Hi all, Can I check cookies set by other servers using PHP? Suppose www.agoodsite.com set a cookie in the browser, can I access that cookie? I dont want the details in the cookie. I just want to know weather www.agoodsite.com was set a cookie or not. If so, please let me know how. Thanks
For security reasons the specification does not allow you any access, even knowledge about the existence of a cookie, from other top level domains.
The reason if your wondering why it wont work is because it keeps hackers from accessing your information and using it
It is not doable using PHP. For testing and debugging your web app, you can use FireBug to view cookie that is set from a site. Little John