Advertisement
Guest User

Untitled

a guest
May 6th, 2019
156
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.79 KB | None | 0 0
  1. <!DOCTYPE html>
  2.  
  3. <html>
  4.  
  5. <head>
  6.  
  7. <title>Simple Form</title>
  8.  
  9. </head>
  10.  
  11. <body>
  12.  
  13. <h2>Thank You For Submitting The Form</h2>
  14.  
  15. <!-- Getting the output from the form value provided through 'form.php' -->
  16.  
  17. First Name: <?php echo $_POST['Fname']; // displaying the value of First Name provided in 'Form.php' while submitting the form ?><br/>
  18.  
  19. Last Name: <?php echo $_POST['Lname']; // displaying the value of Last Name provided in 'Form.php' while submitting the form ?><br/>
  20.  
  21. Username: <?php echo $_POST['Username']; // displaying the value of Username provided in 'Form.php' while submitting the form ?><br/>
  22.  
  23. Password: <?php echo $_POST['Password']; // displaying the value of Password provided in 'Form.php' while submitting the form ?><br/>
  24.  
  25. <!-- End of getting the value from the submitted form -->
  26.  
  27. </body>
  28.  
  29. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement