I just figured out that I have a problem in IE while working with one of my pages. I set cookie with:
setcookie('page', '12345', '2000000', '/');
And if I login I reset the cookie calling that function again. In firefox everything works fine cause the old cookie is deleted but in IE both cookies stay? How can this happen? Isn't that illegal?
şimdi ben bu sabit:
setcookie('page', '', time() - 3600, '/');
setcookie('page', '1234', '2000000', '/');
Bu ok bir çözüm veya bir şey eksik?