Welcome Guest, Not a member yet? Register   Sign In
Checking if a file exists
#2

[eluser]KingSkippus[/eluser]
Why can't you use file_exists()?

In your controller, you can do this:

Code:
if (file_exists(APPPATH.'views/themes/'.$filename)) {
    $this->load->view('themes/'.$filename);
}
else {
    $this->load->view('themes/default.tpl');
}

Note that there's no $ in front of APPPATH and no slash after it, it is a constant that points to your application directory.


Messages In This Thread
Checking if a file exists - by El Forum - 07-18-2010, 07:39 PM
Checking if a file exists - by El Forum - 07-18-2010, 08:21 PM



Theme © iAndrew 2016 - Forum software by © MyBB