03-03-2008, 06:22 PM
|
#2 (permalink)
|
|
The Contributor
Join Date: Feb 2008
Location: Croatia
Posts: 90
Thanks: 4
|
to delete a cookie:
you have your cookie code
PHP Code:
// Set cookie setcookie("cookieName", $value, time()+3600); // Unset Cookie setcookie("cookieName", $value, time()-36000);
The same could be used - cookieName = PHPSESSID amd unset it.
From session_destroy() @ php.net manual
session_destroy() destroys all of the data associated with the current session. It does not unset any of the global variables associated with the session, or unset the session cookie.
In order to kill the session altogether, like to log the user out, the session id must also be unset. If a cookie is used to propagate the session id (default behavior), then the session cookie must be deleted. setcookie() may be used for that.
__________________
Back from sysadmins to the programmers.
|
|
|