How would I extract the names from $HTTP_POST_VARS? I turn on php_track_vars, and I do the following:
$form_vars = count($HTTP_POST_VARS);
for ($i=0; $i < $form_vars; $i++) {
$a = $HTTP_POST_VARS[$i];
echo $a,"<BR>";
}
$a should have the value of $HTTP_POST_VARS[$i], but it's empty. I'm trying to extract the name and value of the form variable in $HTTP_POST_VARS.
Thanks,
Brian