(re) Hi !
I’m experiencing a new problem with phpsession (which I use ‘cause I need to store session datas serverside).
I’ve got a controller, which filename is Manager.php
This controller has several functions.
The first one, index() store a session data using phpsession. Here is the code I used :
$this->phpsession->save('sess_log', 'ok');
So the name of the session data is ‘sess_log’ and its value is ‘ok’.
When a visitor goes to mywebsite/manager/ a that sess_log data should be stored in the session datas.
Now from another function (which name is infos() ) in my Manager controller, which is executed when the visitor cliks on a mywebsite/manager/infos link, I’d like to retrieve the sess_log data using that code :
$this->phpsession->get('sess_log');
And it just doesn’t work. sess_log session data seems to be empty.
Any idea of what’s happening?
Thanks in advance for your help.
