I've got a site that uses cookies to store login information in an admin area for users. Occasionally, a user's browser doesn't seem to store their session information and keeps getting bumped back to the login page.
These users are always using IE 6.
Has anyone else noticed problems with IE 6.0 and php cookies?
I've looked around on google and phpbuilder, and can't seem to find more than a mention of this problem. Here's how I'm setting the cookies:
// if valid, set cookie (session only).
setcookie ("loginemail", $loginemail,time()+86430); / expire in 30 days /
setcookie ("loginpassword", $loginpassword);