[PHP] Session persistent objects

2007-06-18 Thread Markus Feier
In a browser-application, whenever receiving a GET, php will have to create all involves objects. I wonder, if there is a way to keep php objects, including all actual propertys, during a whole session Markus -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit:

Re: [PHP] Session persistent objects

2007-06-18 Thread Stut
Markus Feier wrote: In a browser-application, whenever receiving a GET, php will have to create all involves objects. I wonder, if there is a way to keep php objects, including all actual propertys, during a whole session Yeah, erm, store the in the session. Too obvious? -Stut --

Re: [PHP] Session persistent objects

2007-06-18 Thread Stut
Please include the list when replying. Markus Feier wrote: I thought I read somewhere, there could be a problem storing objects in sessions. Do you mean $_SESSION['objectid']=new classx... I do indeed mean that. There are a few things you need to be aware of... * When you call