Forum Moderators: coopster
I set the cookie with random names like this.
$r=rand();
setcookie("rand_".$r, $r, time()+(60*60*24), "/");
Then in some other page $r is unknown. Then can I find out what cookies have been set by my website in order to get the names of the cookies or the $r.
Thanks