bruce wrote:
yo rich (or others)...does php provide the ability to store objects in a session var????
You just need to make sure you load the class before the session:
include('user_class.php');
...
session_start();
otherwise you get "incomplete class" errors.
--
Postgresql & php tutorials
http://www.designmagick.com/
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

