need help on cookies... how can i destroy the session(and the cookies) without undergoing into a session_destroy. any quick scripts or some methods on this?? thanks.
Do NOT unset the whole $_SESSION with unset($_SESSION) as this will disable the registering of session variables through the $_SESSION super global. So basically don't do: unset($_SESSION) Code (markup): Instead do: $_SESSION = array(); Code (markup):