我正在尝试访问我刚刚在同一域的其他页面中设置的 cookie,但它不起作用。当我这样做echo $_COOKIE
时,新页面上的数组为空,但包含创建页面上的 cookie。
这是 /PROC/LOGIN.PROC.PHP 中的代码
//Set the cookie for 1 year.
setcookie("username", $username, time()+365*24*60*60);
setcookie("password", $password, time()+365*24*60*60);
这是 /INC/HEADER.INC.PHP 中的代码
if (isset($_COOKIE['username']) && isset($_COOKIE['password'])) {
include("pages/user.header.pages.php");
但是,当我尝试设置 cookie 或仅在 header.inc.php 中显示数组时,该数组为空。