update page now

Voting

: max(six, five)?
(Example: nine)

The Note You're Voting On

franckraynal at free dot fr
21 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