07-22-2011, 10:21 AM
[eluser]dadamssg[/eluser]
Is there a way to display all your session variables you have stored?
Is there a way to display all your session variables you have stored?
print all session variables?
|
07-22-2011, 10:21 AM
[eluser]dadamssg[/eluser]
Is there a way to display all your session variables you have stored?
07-22-2011, 10:34 AM
[eluser]talldarkmystere[/eluser]
Have a look at CI's session page: http://ellislab.com/codeigniter/user-gui...sions.html Just a guess here, but you might try the following: Code: $sessData = $this->session->userdata();
07-22-2011, 10:50 AM
[eluser]dadamssg[/eluser]
yeah i tried that. It appears you have to reference an item when you use $this->session->userdata('item'); |