user1406071
user1406071

Reputation: 627

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?

Upvotes: 2

Views: 2093

Answers (2)

scones
scones

Reputation: 3345

Every browser prevents it.

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

Upvotes: 3

Hal
Hal

Reputation: 1264

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.

Upvotes: 0

Related Questions