Posted by Paul on 04/05/07 18:44
I am taking over an exisitng app. I have the following function on page1:
function check($v) {
global $user;
return $user->validate($v[1], $v[0]);
}
It is in this validate function of that class (which is referenced from
another file) that the $user object is set. $user is referenced on page2
like:
session_register('user');
$user=$_SESSION['user'];
since the ini setting register_globals is Off so the above code fails -
$user is empty.
Any ideas to how to make sure $user is accessible on the second page?
Navigation:
[Reply to this message]
|