I need to take the current values of $http_post_vars and (using a form with a submit button), repost those values to another php script that will parse out those values into a csv file. How do I repost these variables?
The only way I can think of doing that is to output them as hidden fields so they'll be included when the second form is submitted?
loop through the $_POST array maybe...
You also should use htmlentities() and stripslashes()...
echo "<INPUT NAME=\"field_name\" VALUE=\"" . htmlentities(stripslashes($_POST["field_name"])) . "\" TYPE=HIDDEN>\n";