I have an extremely frustrating problem. I am using sessions and in one browser type it works, but it the other it doesn't. Session id's are copying across properly, but I can't even get a danged counter to work. Here's a snippet:
-----at the top of the code------
session_start();
if (!$testNumber){
$testNumber=0;
session_register("testNumber");
}
$testNumber++;
----then at the bottom of the code-----
echo ("$testNumber - testing with session id ".session_id());
The session id works every time, so I know it's not a problem with cookies. Anyone else run into this?