Why does the following work in IE and NS6 but not NS4?
<?
session_start();
session_register("SESSION");
if (! isset($SESSION)) {
$SESSION["count"] = 0;
echo "
Counter initialized, reload this page to see it increment";
} else {
echo "
Waking up session $PHPSESSID";
$SESSION["count"]++;
}
echo "
The counter is now $SESSION[count]";
?>
You can view an example at the following: http://www.thetredways.com/session_test.php