I have a cookie named 'STForum' - I'm trying to delete the cookie but if I reload the page after supposedly deleting it, it is referencing the cookie and pulling in it's data. Code to delete the cookie:
if (setcookie("STforum")) { echo "delete success"; }
it's echoing 'delete success' but other code is also showing the cookie to exist. Is there a reliable way of deleting the cookie?
help!!