SESSIONs
Posted: Thu Sep 02, 2004 3:37 am
i have read the pervious post about the sessions that couldnt be destroyed.
i have php 5 installed at home and php 4 installed on the server both give me the same problem
Tried them almost all i think. however they are not being destoyed or unset. Only a closing browser will unset them.
i have php 5 installed at home and php 4 installed on the server both give me the same problem
Code: Select all
<?
session_start();
$_SESSION = array();
session_destroy();
session_unset("x");
session_unset("y");
session_unset("z");
?>