PHP:
unset($_SESSION['mainDisplay']);
In my original environment (PHP 4.3.2) this line will delete the
session variable 'mainDisplay'. But in the testing environment (PHP
4.3.6) the variable persists even after unset() is called.
Is there some special setting in PHP that can allow a session to
persist even if you attempt to delete it? I am only able to delete the
session variable upon closing the browser and rebooting computer.
Thanx
Phil
unset($_SESSION['mainDisplay']);
In my original environment (PHP 4.3.2) this line will delete the
session variable 'mainDisplay'. But in the testing environment (PHP
4.3.6) the variable persists even after unset() is called.
Is there some special setting in PHP that can allow a session to
persist even if you attempt to delete it? I am only able to delete the
session variable upon closing the browser and rebooting computer.
Thanx
Phil
Comment