21278 Posts in 5728 Topics by 2599 members
|
Page:
1
|
Go to End | |
| Author | Topic: | 890 Views |
-
about Silverstripe session

12 October 2011 at 9:41pm
Hi!
I read about session and I have a lot of doubt about it.
Silverstripe set session in main.php with Session::start().
When Silverstrupe write or update session? Is possible save data in session in every part of my site? For exampe in Page.php or not (this question is connect with time to long for writing ad reading data in session)?
If I set a session varaible for example $_SESSION['test']=$xml->saveXML(); can I repeat this action more then one time in my Page.php function? Or si there an exact point in witch is better to execute and only one time?Thanks..
-
Re: about Silverstripe session

15 October 2011 at 6:18am
you can use the SilverStripe Session object and do Session::set('name', 'jack'); or Session::get('name');
multiple session vars isn't a problem, and you can set them from anywhere, but I guess there's always the chance a session times out if a user stays too long on a page...
| 890 Views | ||
|
Page:
1
|
Go to Top |

