Welcome Guest, Not a member yet? Register   Sign In
Does the view exsist?
#4

[eluser]gevans[/eluser]
That is very true, finished code (to date);

Code:
$uri_string = $this->uri->uri_string();
$uri_string = empty($uri_string)? 'home.php' : $uri_string .'.php';
if(file_exists('./application/views/' . $uri_string) === false)
{
    show_404($uri_string);
}
else
{
    $this->load->view($uri_string);
}


Messages In This Thread
Does the view exsist? - by El Forum - 10-05-2010, 03:23 AM
Does the view exsist? - by El Forum - 10-05-2010, 03:35 AM
Does the view exsist? - by El Forum - 10-05-2010, 03:47 AM
Does the view exsist? - by El Forum - 10-05-2010, 03:56 AM



Theme © iAndrew 2016 - Forum software by © MyBB