[PHP] cookie expire...

2001-08-16 Thread Romeo Manzur
Could I expire a cookie on a determinate date?? I mean tell the cookie that will expire on 17/08/2001... -- Romeo Manzur Web Developer Esgrima 208 Fracc. Deportiva Villahermosa, Tabasco, Mexico C.P.: 86180 Tel.: (52)(9)3-51-5647 -- PHP General Mailing List (http://www.php.net/) To

Re: [PHP] Cookie Expire Problem

2001-04-08 Thread Christian Reiniger
On Sunday 08 April 2001 06:15, you wrote: Your cookie is set to expire in the year 2280. You think that's a little overkill? And it runs into the UNIX-style Y2K problem which is...um...13 years from now? Well anyway... 2038 with a 32bit processor -- Christian Reiniger LGDC Webmaster

[PHP] Cookie Expire Problem

2001-04-07 Thread Jeff Oien
This code won't set a cookie. I took the time part from a past post to set the time for wy ahead. I must be doing it wrong though: $time = time(); $cookie_name = "auth"; $cookie_value = "ok"; $cookie_expire = "$time*3"; $cookie_domain = ""; setcookie($cookie_name, $cookie_value,

Re: [PHP] Cookie Expire Problem

2001-04-07 Thread Plutarck
The problem is that it is too far in the future. Your cookie is set to expire in the year 2280. You think that's a little overkill? And it runs into the UNIX-style Y2K problem which is...um...13 years from now? Well anyway... Make your cookie's expire time a little more reasonable. Like 5