Voting

: max(nine, two)?
(Example: nine)

The Note You're Voting On

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