|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2003-09-06 05:05 UTC] derick@php.net
[2003-09-06 10:34 UTC] zoop at lone dot ath dot cx
[2003-09-06 19:53 UTC] sniper@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Sun Dec 07 13:00:01 2025 UTC |
Description: ------------ The problem occured in php 4.3.3 apache 1.3.27 solaris 2.8 I seemed to have a problem with the $_SESSION Variable I could set something in the array and the print it but I couldn't go to another page. It would have an empty array. I downgraded to 4.3.2 and it works without any probems Reproduce code: --------------- if (!$_SESSION['the']) { print here; } $_SESSION['the'] = 1 <html> submit to load the page again Expected result: ---------------- the first time you load the page it should print here and whatever html there might be. after you reload the page or post to it it shouldn't print here. Actual result: -------------- it prints here every time you load the page. if you print the value of $_SESSION['the'] it is undefined.