>If you go to the next webpage by using the same file (webpage) or a >$_SERVER['PHP_SELF'], the data in the $_SESSION array remain the same, it >does not change as it should.
<snip> > if ($_SESSION['test'] == "one") { $_SESSION['test'] = "two" }; > if ($_SESSION['test'] == "two") { $_SESSION['test'] = "three" }; > if ($_SESSION['test'] == "three") { $_SESSION['test'] = "four" }; > if ($_SESSION['test'] == "four") { $_SESSION['test'] = "one" }; The code above will always result in $_SESSION['test'] == 'one', if you start from any of the four tested values. Is there some other behavior you are expecting? --------------------------------------------------------------------- michal migurski- contact info and pgp key: sf/ca http://mike.teczno.com/contact.html -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php