I'm seeing something very weird with my Session vars. If I create a session var on one page and set: $_SESSION['username'] = "James"
The on another page I do this:
$username="John"
if(isset($SESSION['username']))
printf('%s', $SESSION['username']);
It prints "John"!!!!! What the?!?! Is this the way it's supposed to work? I'm stumped as I thought this wouldn't be the way.