Well if you can change where the form posts to, you could write a simple little script that reads all of the post variables and gives you the information.
<?php
reset ($HTTP_POST_VARS);
while (list($key, $value) = each($HTTP_POST_VARS)) {
print "Form Name: $key -- Value: $value";
}
?>