PHP - Sessions and Cookies
What is wrong with this code to destroy a session?
session_start(); $_SESSION = array(); session_destroy(); setcookie(session_name(), '', time() + 3600);
