update page now
PHP 8.1.34 Released!

Voting

: three plus three?
(Example: nine)

The Note You're Voting On

franckraynal at free dot fr
20 years ago
Here is another way to make 'unset' work with session variables from within a function : 

<?php
function unsetSessionVariable ($sessionVariableName) {
   unset($GLOBALS[_SESSION][$sessionVariableName]);
}
?>

May it work with others than me...
F.

<< Back to user notes page

To Top