You led me down the right path. I wasn't including the class definition
file before adding the object to the session.
Thanks.
Sumeet wrote:
Scott Gunn wrote:
This should be simple. What am I doing wrong?
Here is the code that is failing:
$user = $_SESSION['user'];
print_r($user);
echo "Welcome " . $user->firstName;
The print_r command prints out:
__PHP_Incomplete_Class Object ( [__PHP_Incomplete_Class_Name] => User
[isLoggedIn] => 1 [lastName] => Gunn [firstName] => Scott )
try
$user = (User)$_SESSION['user'];
rest remains the same.
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php