Advertisement
Guest User

multiformtest

a guest
May 2nd, 2013
47
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.33 KB | None | 0 0
  1. <?php
  2. var_dump( $_GET );
  3. ?>
  4. <html>
  5. <head><title>FormTest</title></head>
  6. <body>
  7. <?php for( $x=0; $x < 5; $x++) { ?>
  8.     <form action="" method="GET" id="formtest">
  9.         <input type="text" name="testtext" id="testtext" value="TestText-<?php echo $x; ?>">
  10.         <input type="submit" value="Send">
  11.     </form>
  12. <?php } ?>
  13.  
  14. </body>
  15. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement