There is a post vars array right How can I print all the post vars?
For example:
foreach ($_POST as $k=>$v) { echo "key: {$k}, value: {$v}<br />"; } // or if you just want to debug print_r($_POST);