I am trying to delete a cookie.
I am using setcookie(\"PHPSESSID\", \"\", time() - 6400); which deletes the cookie just fine.
setcookie(\"PHPSESSID\", \"\", time() - 6400);
However it is not enti
See Example 1 here to delete and destroy a session:
http://php.net/manual/en/function.session-destroy.php
first unset the cookie, then destroy the session.