Advertisement
Guest User

Untitled

a guest
Aug 21st, 2019
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. <form action="someform.php" method="post">
  2. Name: <input type="text" name="Name" value="Jim" /><br />
  3. Password: <input type="password" name="Password" /><br />
  4. Age: <input type="text" name="Age" /><br />
  5. <input type="submit" />
  6. </form>
  7.  
  8. <input type="hidden" name="Name" value="<?php print $_POST['Name']; ?>" />
  9. <input type="hidden" name="Password" value="<?php print $_POST['Password'];
  10. ?>" />
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement