Quick question... I've been investigating session management in php, regarding primarily object serialization and deserialization. I am trying to find a way of registering an object in such a way that it will be automatically serialized when the session is closed, but not deserialized when the session is then opened. I know that using session_register($var) or even $_SESSION['var'] = $var will automatically serialize the data, but then when I open the session back up I have no way of keeping the data in it's serialized form. Any ideas?
Thanks,
Darryl