from the php-manual " Netscape Communicator 4.05 and Microsoft Internet Explorer 3.x appear to handle cookies incorrectly when the path and time are not set. "
http://www.php.net/manual/en/function.setcookie.php
I too had problems with session and cookie variables.
cheers nilesh.
Hopefully the phpbuilder crew can help me out here. We're using sessions to track a whole bunch of variables and we're finding that Netscape and IE are behaving differently. Netscape is making code work the way that we want it to but IE keeps resetting a specific variable. Any ideas?
Chris,
I've just completed a project that uses sessions in PHP. The way I fixed it was to pass the SESSID un the URL, eg <A HREF="page.php?<? echo "SESSID"; ?>">
With this method you don't need to worry about the cookie keeping the SESSID alive.