CodeIgniter Forums
How to access session in helper file - Printable Version

+- CodeIgniter Forums (https://forum.codeigniter.com)
+-- Forum: Archived Discussions (https://forum.codeigniter.com/forumdisplay.php?fid=20)
+--- Forum: Archived Development & Programming (https://forum.codeigniter.com/forumdisplay.php?fid=23)
+--- Thread: How to access session in helper file (/showthread.php?tid=26532)



How to access session in helper file - El Forum - 01-16-2010

[eluser]Unknown[/eluser]
i want to access session in helper file
what to do for this?
waiting for reply


How to access session in helper file - El Forum - 01-16-2010

[eluser]Colin Williams[/eluser]
Code:
$ci =& get_instance();
$var = $ci->session->userdata('var');



How to access session in helper file - El Forum - 01-18-2010

[eluser]Unknown[/eluser]
thanks for reply