PHP read a cookie that is on another domain

前端 未结 6 713
孤街浪徒
孤街浪徒 2020-12-20 20:22

I have two domains. One domain contains the login script. It creates a cookie when logged in. Another domain have a URL shortener.

So, on the 2nd domain that have th

6条回答
  •  囚心锁ツ
    2020-12-20 20:53

    Just while setting cookie from the login page set the cookie to entire domain like this

    setcookie("c","value",time()*3600*24,"/");
    

    in this way you can set cookie to your entire domain.

提交回复
热议问题