Re: [PHP] Serializing/unserializing objects

2001-03-26 Thread Michael Kimsal
You'll be reinitializing the object on every page request - objects aren't perisistant across requests. You can make the data in that object persistent - basically recreate the object every page with the old data (PHP4 sessions would be one way to go here) but you won't be able to make the objec

RE: [PHP] Serializing/unserializing objects

2001-03-26 Thread Chris Cocuzzo
D] Subject: [PHP] Serializing/unserializing objects What I want to do is to use an object to create a site.I plan on initiaizing the object on my page index.php, and just recycling index.php with different variables, so that I get different pages. Ideally, I want the object to read a site config file,

[PHP] Serializing/unserializing objects

2001-03-26 Thread Kevin Beckford
What I want to do is to use an object to create a site.I plan on initiaizing the object on my page index.php, and just recycling index.php with different variables, so that I get different pages. Ideally, I want the object to read a site config file, so that I can modify the site config file f