You can find more information about PHP's predefined variables here:
http://www.php.net/manual/en/language.variables.predefined.php
It says $HTTP_POST_VARS is "An associative array of variables passed to the current script via the HTTP POST method," which I take to mean that they're stored like "name"=>"value". Try this:
foreach($HTTP_POST_VARS as $key => $value) {
print("$key = $value<br>\n");
}