> I discovered that the bit that Internet Explorer 4.0 didn't recognize a
> cookie as valid when I included an expiration time.

> This Doesn't Work:
> setcookie ("ArtPrintSession",$SessionID,time()+3600);

> What's the bug???

IE.

IE read the spec about "optional arguments" and decided that if you wanted
to provide an expiration time, you had to provide a path as well.

Try:
setcookie ("ArtPrintSession",$SessionID,time()+3600, '/');

Moral:  Microsoft can't even follow their *OWN* specs, much less somebody
else's.

--
WARNING [EMAIL PROTECTED] address is an endangered species -- Use
[EMAIL PROTECTED]
Wanna help me out?  Like Music?  Buy a CD: http://l-i-e.com/artists.htm
Volunteer a little time: http://chatmusic.com/volunteer.htm



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to