[eluser]skunkbad[/eluser]
[quote author="quantis" date="1276395801"]I'm using a template to display the header, body, and footer. These are all views. Within the header there is the User_info view for displaying the Sign In / Sign Up or if logged in already the customary logout / control panel display. At present within the User_info PHP view i have IF statements and checks for cookie.
TO me the User_info display should be a controller which then decides what view to show. From within my home page controller or template view is it possible (and proper) to load the User_info controller class? Would i use
$this->load->library('controllers/User_info')?[/quote]
Since the logged in/not logged in status is something that you would generally want to see on every page, the best thing to do is extend the controller class by making a MY_Controller.