I didn't get any response from anyone yesterday, so maybe, there's a guru who can help me ... :rolleyes:
Has anyone registered a session variable, but when you access it, it's value is NULL ???
My code goes something like this ....
$SESSION['access_level'] = '1';
$SESSION['auth_user'] = $POST['auth_user'];
$SESSION['auth_pass'] = $_POST['auth_pass'];
session_write_close();
include SITE_ROOT . 'includes/classes/class.frame.php';
$frameclass = new frame();
$frameclass->display_frame();
Now, when the individual frames access these variables, the are all NULL ...
... access_level|N;auth_user|N;auth_pwd|N; ....
They should look something like ...
... access_level|s:1:"1";auth_user|s:11:"87635jdg87h"; auth_pwd|s:8:"xgJ76Hdv";...