/ Published in: PHP

This code will loop through any posted variables and print the name of the field as well as the value of the field.
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
$html = ""; foreach($_REQUEST as $vn=>$vv) { "; }// end if }// end foreach
Comments
