/ 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
$html = ""; foreach($_REQUEST as $vn=>$vv) { "; }// end if }// end foreach
You need to login to post a comment.