0
I am trying to store cookies for an application I developed in PHP and noticed that in Internet Explorer my cookies are not being stored (or are expiring soon after its creation). In my code I set Cookies this way:
setcookie("login", $login_confirmacao, time() + 3600, "/");
setcookie("senha", $senha_confirmacao, time() + 3600, "/");
I noticed that when disabling this function the browser stored Cookies:
[ ] Block cookies from third parties who do not have a compact privacy policy.
How do I set this "Compact Privacy Policy" ? or how do I use cookies in IE?
Thanks Gustavo, I’ll try ;)
– Euclides Junior