Welcome Guest, Not a member yet? Register   Sign In
How to check if a view exists
#8

[eluser]mikegioia[/eluser]
Yea I like Seppo's method a lot. I ran some tests using these ideas.

Code:
echo $this->load->view('my_view', '', TRUE);

... produced a 'could not load view' error even though I specified the load to return a string.

Code:
if (is_file(APPPATH.'views/' . $my_view . EXT))
{
     $this->load->view($my_view);
}

... worked like a charm. Thanks a lot guys.

Mike


Messages In This Thread
How to check if a view exists - by El Forum - 03-30-2008, 08:44 AM
How to check if a view exists - by El Forum - 03-30-2008, 08:50 AM
How to check if a view exists - by El Forum - 03-30-2008, 08:54 AM
How to check if a view exists - by El Forum - 03-30-2008, 08:58 AM
How to check if a view exists - by El Forum - 03-30-2008, 09:02 AM
How to check if a view exists - by El Forum - 03-30-2008, 09:08 AM
How to check if a view exists - by El Forum - 03-30-2008, 09:32 PM
How to check if a view exists - by El Forum - 03-30-2008, 09:47 PM
How to check if a view exists - by El Forum - 03-31-2008, 12:23 AM
How to check if a view exists - by El Forum - 03-31-2008, 12:25 AM
How to check if a view exists - by El Forum - 03-31-2008, 12:26 AM
How to check if a view exists - by El Forum - 03-31-2008, 12:28 AM
How to check if a view exists - by El Forum - 03-31-2008, 09:00 PM



Theme © iAndrew 2016 - Forum software by © MyBB