Is it possible to read 3rd party cookies
cookies, php
Solution
No, it's impossible.
You can only read cookies that come from your own domain. The other cookies are not even sent to your server.
If you could read every cookies the user has, you would be able to obtain personal information such as their facebook password, connection to their bank etc.
It would be a serious breach of privacy, and as such, browsers do not send cookies except those from the same domain.
Problem
Im familiar with reading cookies using `php`, but i was wandering if there is a way you can read a users browser cookies set by another 3rd party site (ie. not your own.) Could somthing like this be written to view all of the users set cookies ? `print_r($_COOKIE);`