Welcome Guest, Not a member yet? Register   Sign In
Default Layout
#19

[eluser]jedd[/eluser]
Hmm .. a few things spring out there (though I'm having trouble identifying your intent in your MY_Controller)

In your controller, do you extend MY_Controller, or just Controller?

Why - in your controller - are you assigning:
Code:
$this->data = $popular;

This will overwrite any extant data in $this->data. You would instead need to do something like this:
Code:
$this->data['popular'] = $popular;
This means that in your view, later, you'll have a $popular variable to play with. And every young variable wants to be popular.

Most importantly I think is your render() method in your MY_Controller - I do not think it does what you think it will do.

Read up in the [url="http://ellislab.com/codeigniter/user-guide/general/views.html"]CI manual on generating views[/url] - specifically the third parameter being set to TRUE - and then look at your render function again, and probably assign the output of that view generation to a variable, or just return it (I'd go for the former, and test for success/fail before returning anything - but I'm a cautious kind of guy).


Messages In This Thread
Default Layout - by El Forum - 05-16-2009, 02:00 PM
Default Layout - by El Forum - 05-16-2009, 02:08 PM
Default Layout - by El Forum - 05-16-2009, 02:16 PM
Default Layout - by El Forum - 05-16-2009, 02:35 PM
Default Layout - by El Forum - 05-16-2009, 02:44 PM
Default Layout - by El Forum - 05-16-2009, 02:59 PM
Default Layout - by El Forum - 05-16-2009, 03:37 PM
Default Layout - by El Forum - 05-16-2009, 03:41 PM
Default Layout - by El Forum - 05-17-2009, 09:52 AM
Default Layout - by El Forum - 05-17-2009, 10:59 AM
Default Layout - by El Forum - 05-17-2009, 12:30 PM
Default Layout - by El Forum - 05-17-2009, 02:03 PM
Default Layout - by El Forum - 05-17-2009, 04:22 PM
Default Layout - by El Forum - 05-17-2009, 11:23 PM
Default Layout - by El Forum - 06-08-2009, 09:58 PM
Default Layout - by El Forum - 06-09-2009, 02:14 AM
Default Layout - by El Forum - 06-09-2009, 08:15 PM
Default Layout - by El Forum - 06-09-2009, 09:18 PM
Default Layout - by El Forum - 06-10-2009, 04:42 AM
Default Layout - by El Forum - 06-10-2009, 04:57 AM
Default Layout - by El Forum - 06-10-2009, 04:59 AM
Default Layout - by El Forum - 06-10-2009, 04:41 PM
Default Layout - by El Forum - 06-11-2009, 04:03 PM
Default Layout - by El Forum - 06-11-2009, 04:51 PM



Theme © iAndrew 2016 - Forum software by © MyBB