> $userinfo = new user();
> echo $userinfo->get_signin();
> It just returns "Array"? How do I, for lack of a better word....get to
> this array? Outside of a class it works great, I echo $rows['sign_in']
> and it works. But this! Help!
> Many many thanks!

Do this instead:

$userArray = $userInfo->get_signin();
echo $userArray['sign_in'];

Chris


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to