Hello,
I want to make a form handler that I can use with all my different forms. Is there a way to gather all posted form variables without knowing thier name??
try this
<?php if(isset($HTTP_POST_VARS)) { while(list($var, $val) = each($HTTP_POST_VARS)) { echo "$var<br>"; } } ?>
Perfect! Thank you!