Posted by Joel Wan on 10/25/05 22:04
Lupher is right, resources cannot be placed in SESSION variables but you can store entire objects in the session by serializing the object for eg: $_SESSION['myObject'] = serialize($myObject); and on the other page, $myObject = unserialize($_SESSION['myObject']; then $myObject->attribute will be available.
[Reply to this message]
Copyright © 2005-2006 Powered by Custom PHP Programming