6
I've understood.
In case to simplify the explication, i didn't say that
unset($_SESSION['txt']);
unset($_SESSION['heure']);
unset($_SESSION['adresse']);
unset($_SESSION['contact']);
txt, heure, adresse, contact was array and apparently in XOOPS we can't destroy an array with this method.
We must destroy variable by variable.
unset($_SESSION['txt[0]']);
unset($_SESSION['heure[0]']);
unset($_SESSION['adresse[0]']);
unset($_SESSION['contact[0]']);
unset($_SESSION['txt[1]']);
unset($_SESSION['heure[1]']);
unset($_SESSION['adresse[1]']);
unset($_SESSION['contact[1]']);
...
How can I do to destroy the array as a whole ?