You probably need to eat the session cookie in addition to destroying
the session.

<?php

/** Destroy session record in /tmp or your database or wherever */
session_destroy();
/** Destroy the $_SESSION vars so they are removed from PHP script */
unset($_SESSION);
/** Destroy the cookie so that a new session will start next visit */
setcookie(session_name(), -3600);

?>

--
Teach a man to fish...

NEW? | http://www.catb.org/~esr/faqs/smart-questions.html
STFA | http://marc.theaimsgroup.com/?l=php-general&w=2
STFM | http://php.net/manual/en/index.php
STFW | http://www.google.com/search?q=php
LAZY |
http://mycroft.mozdev.org/download.html?name=PHP&submitform=Find+search+plugins

Attachment: signature.asc
Description: OpenPGP digital signature

Reply via email to