我用下面的代碼來創建一個cookie:餅乾example.com的認可而不是www.example.com
function createSession($userid,$firstname)
{
$expire=time()+60*60*24*30;
setcookie("usid", $userid, $expire);
setcookie("usname", $firstname, $expire);
}
當我登錄到我的網站具有以下地址:mysite.com該cookie被識別,但是當我用這個地址登錄時:www.mysite.com該cookie不被識別,爲什麼?
我用下面的代碼來檢查,如果cookie存在:
if(isset($_COOKIE['usid']))
$newuser = false;
謝謝,它現在正在工作。我會盡快接受你的回答。 –