06-20-2012, 06:33 AM
[eluser]MRosenello[/eluser]
Did you make sure you loaded the session library in the controller for that page? I believe that this has to be loaded on every controller you intend to use the session. Or I believe you can load it by default for everything.
Did you make sure you loaded the session library in the controller for that page? I believe that this has to be loaded on every controller you intend to use the session. Or I believe you can load it by default for everything.
Code:
public function __construct()
{
parent::__construct();
$this->load->library('session');
}