> My problem is:
> I wanna know the names of the variables that my actual page 
> recives from the last page (using the POST method).

while( list( $formVarName, $formVarValue = each( $HTTP_POST_VARS )) {
  echo "$formVarName = $formVarValue<br>\n";

}

Chris

Reply via email to