Szymon80
27.06.2010, 22:28:22
Witam.
Potrzebuję skryptu js lub ew. php który usuwał by ciasteczko o nazwie 'ala', gdy zakładka przeglądarki na której jest dana strona zostanie zamknięta, lub user przejdzie na inną stronę z moje strony, albo cała przeglądarka zostanie zamknięta.
Blame
28.06.2010, 15:03:26
Przyda ci się zdarzenie window.onClose i żeby usunąć ciasteczko wystarczy mu ustawić datę z przeszłości jako datę ważności.
wookieb
28.06.2010, 15:07:48
http://pl.php.net/setcookieCytat
The time the cookie expires. This is a Unix timestamp so is in number of seconds since the epoch. In other words, you'll most likely set this with the time() function plus the number of seconds before you want it to expire. Or you might use mktime(). time()+60*60*24*30 will set the cookie to expire in 30 days. If set to 0, or omitted, the cookie will expire at the end of the session (when the browser closes).