I ran a simple test to ensure the PHPSESSID is stored correctly. IE, Chrome and Safari work OK, but Firefox keeps changing the session id when the page is refreshed or when I change to another web page.
This is the test file (test.php):
<?php
session_start();
$sessionID = session_id();
echo $sessionID;
?>
The only add-on I have is Firebug.
Any help is appreciated.
Thanks!