简体   繁体   中英

Check if a cookie exists on another domain

I have actually set the following cookie for the following domain:

setcookie("thing", $data, time()+3600, "/", "example1.com", 1);

The cookie was set from this domain: example2.com

When I try to search for the cookie 'thing' I can't seem to find it. How is it possible to set a cookie on a domain, which will remain on another domain if I search for it?

UPDATE:

I basically want to pass a value from Domain A to Domain B. When a visitor arrives to Domain A he/she gets redirected AND pass a value to Domain B which I'd like to capture there.

How is it possible?

Every browser prevents it.

Cookies can not be shared between domains. https://wikipedia.org/wiki/Same-Origin-Policy

I'm pretty sure it is impossible to create a cookie for another domain - this would be a pretty significant security hole.

See @scones' link.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM