Problems deleting cookies, won't unset

后端 未结 18 721
死守一世寂寞
死守一世寂寞 2020-12-09 15:33

I\'ve tried searching the php manual and internet on how to delete cookies and I\'ve tried it the exact same way they all say:

setcookie(\"name\", \'\', 1);
         


        
18条回答
  •  天涯浪人
    2020-12-09 16:36

    Ok, I really don't understand, but it works now. The magic code is:

    setcookie("name", '', 1, $path);
    

    Haven't I already tried that??! Whatever, it works now. Thanks for your help, people!

提交回复
热议问题