Re: [PHP] Find out cookies on a computer?

2006-06-30 Thread Richard Lynch
On Thu, June 29, 2006 4:23 pm, Peter Lauri wrote:
 Is it possible to some how find out all cookies on a specific computer
 and
 their name and value? I assume not :)

If you have physical access to it, Netscape and IE cache their
non-session cookies in files you can dig out.  Session cookies can be
viewed through the browser, or browser plugins.

From server-side, you can var_dump($_COOKIES) to see all the cookies
you sent.

If you mean to ask if you can see from your server, the cookies I sent
from my server, the answer is No.

-- 
Like Music?
http://l-i-e.com/artists.htm

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP] Find out cookies on a computer?

2006-06-29 Thread Peter Lauri
Is it possible to some how find out all cookies on a specific computer and
their name and value? I assume not :)

 

/Peter