I am on a hosted server.. the register_globals = On and track_vars = On (PHP 4.0.6) and Netscape is not registering variables (netscape 4.x).
Could the cause be that register_globals and track_vars are both on?
does anyone have any other ideas why the following code does not work in Netscape 4.x ?
<? session_start();
$sess_valid_user = 'ellamint';
session_register("sess_valid_user");
echo "<a href=ts2.php>Next</a>";
?>
On Next Page:
<? session_start();
echo $session_id;
echo '<br>name='.$sess_valid_user;
?>
the session variable $sess_valid_user is empty! In IE and N6 it works great.
Please help.
WeBb