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 their creation). In my code I set Cookies this way:
setcookie("login", $login_confirmacao, time() + 3600, "/");
setcookie("senha", $senha_confirmacao, time() + 3600, "/");
I noticed that by disabling this function, the browser stored Cookies:
[] Block third-party cookies that do not have a compact privacy policy.
How can I set this "Compact privacy policy"? or how do I use cookies in IE?