I know the cookies are there, as I can grab them by name, and print out their values.
But how to read their info out of the global array?
I tried this (with the idea of building a loop to get them all) :
global $HTTP_COOKIE_VARS;
if ( isset ($HTTP_COOKIE_VARS[0]) ) echo "Good cookie!";
but it sees nothing. I also tried :
if ($HTTP_COOKIE_VARS[0]) echo "Good cookie!";
Also, how do I extract the value of the cookie here?
Thanks in advance.