i\'ve configured wamp in my system, and am doing the development cum testing in this local environment. i was working on the logout functionality, and happened to notice tha
session_unset() and session_destroy() do not delete the session cookie. You have to manually unset it with a setcookie() call.
session_unset()
session_destroy()
setcookie()
session_unset is the converse of session_register(), and session_destroy simply cleans out $_SESSION without affecting the cookie.
session_register()