I've also had this issue from time to time. Used the following to destroy it under all circumstances.

   if (isset($_COOKIE[session_name()])) {
       setcookie(session_name(), '', time()-42000, '/');
   }
   session_destroy();

Shannon Doyle wrote:
Hi People,

Trying to get a session to destroy correctly, however the darn thing just
refuses to destroy. I call the following in a separate webpage in a effort
to destroy the session, only to find that the session still persists.

<?php
session_start();
session_unset();
session_destroy();
Header("Location: index.php");
?>


Any help would be appreciated.

Cheers,

Shannon


--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to