I am trying to delete a cookie.
I am using setcookie("PHPSESSID", "", time() - 6400);
which deletes the cookie just fine.
However it is not entirely deleted. When looking at firebug, under "Response Headers" the cookie is being deleted. However under "Request Headers" the cookie is not deleted (and this affects the code behavior).
Ho do I delete (or modify, or access) this other cookie as well?
Thanks!