Will variables stored in a cookie show up on a call to HTTP_POST_VARS?
Nope, the cookies are stored in another CGI varaible "HTTP_COOKIE_VARS",
while(list($k,$v) = each($HTTP_COOKIE_VARS)) { echo "COOKIES[\"".$k."\"] = ".$v."<br>"; }