我想要做的是記住我複選框。我已經設置瞭如果爲用戶名設置了cookie,那麼它會檢查複選框。我想要做的是,如果有一個cookie,但用戶決定取消選中,以防萬一別人想從同一臺計算機訪問他們的帳戶,然後它會刪除cookie我不知道該怎麼做到這一點。這是我到目前爲止所。Cookie刪除
if (isset($_POST['remember'])) {
// Sets an expiration time for the cookie
$my_expiration = time()+60*60*24*100;
// Sets the cookie for the username
setcookie("username", $username, $my_exiration, "/");
} else {
setcookie ("username", "", time() - 3600);
}
我很抱歉,但是問題在於它沒有刪除cookie。 –