Hi. I made a website that has a login system.
The cookies worked fine until I changed the layout.
Could you tell me why this is happening?
Login Code:
setcookie("loginuser", $username, time()+2592000);
setcookie("loginpassword", $password, time()+2592000);
(I tried checking my cookies, and I...