HI
I'm setting a cookie using the following:
setcookie($cookie_name, $cookie_value, $cookie_expire, "/", $cookie_domain, 0);
I know it is being set because I can retrieve values from subsequent pages, however I cannot find the cookie on my machine. It is not in the cookie folder, and I can't find it using a search (I have not closed the site so I know it still exists).
Am I right to assume a physical file is being created, or is the cookie only held in memory ... if a file is created, how can I find it?
Thanks.
I'm setting a cookie using the following:
setcookie($cookie_name, $cookie_value, $cookie_expire, "/", $cookie_domain, 0);
I know it is being set because I can retrieve values from subsequent pages, however I cannot find the cookie on my machine. It is not in the cookie folder, and I can't find it using a search (I have not closed the site so I know it still exists).
Am I right to assume a physical file is being created, or is the cookie only held in memory ... if a file is created, how can I find it?
Thanks.