Welcome Guest, Not a member yet? Register   Sign In
Repetive html with based on dynamic data - view partial vs helper
#6

[eluser]msteudel[/eluser]
Oh an here's the main_teplate:

Code:
<?php
$this->load->view( 'includes/header' );

$uri = explode( '/', uri_string() );

switch( $uri[3] ) {
    case "":
    $this->load->view( $_SERVER['REQUEST_URI'] . '/index' );
    break;
    default:
    $this->load->view( $_SERVER['REQUEST_URI'] );
}

$this->load->view( 'includes/footer' );
?>


Messages In This Thread
Repetive html with based on dynamic data - view partial vs helper - by El Forum - 04-23-2010, 02:03 PM



Theme © iAndrew 2016 - Forum software by © MyBB