Yeah, it's pretty easy...
You set up a list loop, try the following:
reset($HTTP_POST_VARS);
while (list($name, $value) = each($HTTP_POST_VARS)) {
echo $name .' = '. $value;
This will print the name of the posted variables, and their corresponding values.
If you're using this inside a function, remember to
GLOBAL $HTTP_POST_VARS,
or better still, if you're using PHP4, use
$_POST instead of $HTTP_POST_VARS
That's an auto-global!