That doesn't help me, I'm not closing my browser. For example...
Page 1...
<?php
session_start();
session_register("testvar1");
session_register("testvar2");
$testvar1 = "foo";
$testvar2 = "bar";
echo "<a href=page2.php>Page 2</a>";
?>
Page 2...
<?php
session_start();
echo $testvar1;
echo $testvar2;
echo "<a href=page1.php>Page 1</a>";
?>
If someone besides me visits the test pages, it works fine, but if I visit the pages it doesn't work. When each page loads it creates a new temp session file in the temp dir instead of resuming the session.