October 8, 200817 yr Hi people, I was wondering if anyone has a solution for me. i've currently made a login which works with firefox but doesn't work with IE. It seems as though IE is not allowing the logged in page to read cookies or the logout page to send them. Perhaps something along those lines. i've set the cookies on the login page as: setcookie ('f_n', $row[0], time()+3600, '/', '', 0); setcookie ('l_n', $row[1], time()+3600, '/', '', 0); and i've set the logout cookies on the log out page as: setcookie ('f_n', '', time() - 3600, '/', '', 0); setcookie ('l_n', '', time() - 3600, '/', '', 0); now to my understanding the it should work as the log out cookie should overwrite the login one however, i've also tried changing the value to false or 0 same as the domain to false or 0 and even tried setting the time function to mktime back about a year or two. Nothing seems to be allowing it to delete the cookies though. So in internet explorer after you've logged out you can type the logged in extenstion into the brower and it allows you to access the page untill it expires in an hour. Would appreciate any help, cheers guys!
Create an account or sign in to comment