Hi all
I have a pb with the destruction of session vars
i have :
session_start();
$_SESSION['pseudo_membre']="toto";
on another page
session_start();
unset($_SESSION['pseudo_membre']);
session_unset();
session_destroy();
when I read the
$_SESSION['pseudo_membre'] in a 3rd page it is still set...and the session file on disk still contains the values...
any idea ?