Advertisement
Guest User

Untitled

a guest
Oct 20th, 2017
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. <!doctype html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <title>Untitled Document</title>
  6. </head>
  7.  
  8. <body>
  9. <form action="PP.php" method="post">
  10. <input type="text" name="Data">
  11. <input type="submit" name="Add" value="Add">
  12. </form>
  13. <table width="100%" border="1">
  14. <tr><td>Data</td></tr>
  15. <?php if(isset($_POST['Add'])){?>
  16. <tr><td><input type="text" name="Data2" value="<?php echo $_POST['Data'];?>"
  17. <?php echo $_POST['Data'];?></td></tr>
  18. <?php }?>
  19. </table>
  20.  
  21. </body>
  22. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement