multi-page form php html


/ Published in: Other
Save to your folder(s)



Copy this code and paste it in your HTML
  1. <?php
  2. foreach($_POST as $key=>$value){
  3. if ($key!="submit"){
  4. $value=htmlentities(stripslashes(strip_tags($value )));
  5. echo "t<input type="hidden" name="$key" value="$value">n";
  6. }
  7. }
  8. ?>

Report this snippet


Comments


You need to login to view comments.