On first page:
$auth = new Class(); session_start(); $_SESSION['auth'] = serialize($auth);
Second page:
session_start(); var_dump($_SESSION); $auth = unserialize($_SESSION['auth']); var_dump($auth);
When I var_dump() $_SESSION it appears to be a string representation of the object. However, when I try to unserialize() it and store it in $auth the value is bool(false) and not an object.
Can anyone tell me what I am doing wrong?
Thanks, -- Jason Giangrande <[EMAIL PROTECTED]> http://www.giangrande.org http://www.dogsiview.com
-- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php