Re: [PHP] setcookie BUG w/ IE 5.5, 6.0 & Netscape!

2001-11-27 Thread Casey Allen Shobe
On 29 December 2001 13:35, Kris Wilkinson spaketh unto ye recipient: > setcookie ("myCookie","Blah","time()+7201"); For some reason, you must specify the domain, and make sure you use *exact* formatting on the time, including the GMT suffix. I gave up on setcookie and started using this: $date

Re: [PHP] setcookie BUG w/ IE 5.5, 6.0 & Netscape!

2001-11-27 Thread Shane Wright
Oh yeah, about the lifetime of the cookie - with no valid expiry time it is created as a session cookie - which is supposed to only live as long as the browser does. [opening a new independent browser window does not share the session, but window.open() calls do, as do other 'browser created

Re: [PHP] setcookie BUG w/ IE 5.5, 6.0 & Netscape!

2001-11-27 Thread Shane Wright
Hi Kris Thats because you've wrapped the time() call and the addition inside a pair of doublequotes. Remove those and it'll work fine... Regards -- Shane On Saturday 29 Dec 2001 6:35 pm, Kris Wilkinson wrote: > Just recently I've noticed an issue with setcookie. My scripts which > normall r