How to set a cookie for another domain

后端 未结 11 1903
一向
一向 2020-11-22 07:21

Say I have a website called a.com, and when a specific page of this site is loaded, say page link, I like to set a cookie for another site called b.com

11条回答
  •  醉梦人生
    2020-11-22 07:31

    In this link, we will find the solution Link.

    setcookie("TestCookie", "", time() - 3600, "/~rasmus/", "b.com", 1);
    

提交回复
热议问题