how can i create a self terminating cookie? this is a cookie for a set amount of time but how can i have it delete when the window is closed?
setcookie("cookie name", data in cookie, time);
set the expire time to an old time like
setcookie ("cookie name", "", time() - 3600);
i dont think thats what i want, i want the cookie to delete when the window is closed
I think a cookie automaticly expires when the browser is closed if you just dont set a specified ammount of time...?
ok, ill try that, the code would be:
setcookie ("cookie name", "");
right?