Hi, Trying to solve a phpMyAdmin bug, I want to unset some values from an array located in $_SESSION. At the end of footer.inc.php, just before the exit I have a look and my values are gone from $_SESSION. However on the next click, just after the session_start(), the values are back!
Is it possible that due to our two framesets, the navigation script would end after the main script, therefore storing what I think was unset() from my session?
Hi
Dne Thu, 11 Mar 2010 17:05:15 -0500 Marc Delisle marc@infomarc.info napsal(a):
Trying to solve a phpMyAdmin bug, I want to unset some values from an array located in $_SESSION. At the end of footer.inc.php, just before the exit I have a look and my values are gone from $_SESSION. However on the next click, just after the session_start(), the values are back!
Is it possible that due to our two framesets, the navigation script would end after the main script, therefore storing what I think was unset() from my session?
Yes, there is no guarantee what frame will load first. And also in real life it does differ between browsers.