I'm so completely and utterly confused.....
First, when the user logs in, I have
session_start();
$_SESSION['ALLOW'] = $UserID;
Then on the next page, I have
if(isset($_SESSION['ALLOW'])) { do this }
It never does it. It won't read the session for some reason. It creates the session, but just won't read it.
The session always ends up as a file named sess_$session_id
And inside the file, it shows ALLOW|s:4:"UserID"
That looks right to me. Any ideas why this won't read right?