Hi There,
[EDIT: This seems to have fixed itself -- only thing worse than a problem is a problem that fixes itself (because you don't know when it's coming back again :-)]
This problem started recently, and only applies to IE not netscape.
Here is page 1:
<?php session_start();
$_SESSION[test]=1;
echo "set test=1"; ?>
Here is page 2:
<?php session_start();
echo "test is equal to ".$_SESSION[test]; ?>
(BTW you can see this at:
http://www.relatebase.com/page1.php
http://www.relatebase.com/page2.php )
Simple right? If I call page1 and then call page2, test would show on page2, HOWEVER, if I closed the browser (IE) and opened again to page2 first, test would be blank.
In other words, closing the browser window also kills the session, which was exactly what I wanted.
But all of a sudden that's not the case any more. And I didn't change any settings in IE!!! What's going on?
This is real critical because I want the user to log in every time they start the computer again.
Thanks,
Sam Fullman