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
You might want to unset the $_COOKIE variable too, by adding a
unset($_COOKIE['PHPSESSID']);
in the next line. That however just affects the currently loaded page.