I have found that I can easily set a cookie:
Code: Select all
setcookie("cookiename", "", exptime);I've attempted all of the following methods:
Code: Select all
setcookie("emailAddress", "", time()-86400);
setcookie("emailAddress", "", time()-9999999999999999999999999999999999999999999999999); //(Exaggeration)
session_destroy();
setcookie("emailAddress" ,"",0,"/");~Andrew