Guest User

Untitled

a guest
Jul 21st, 2018
129
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.50 KB | None | 0 0
  1. <html>
  2. <body>
  3.    
  4.     <form action = "test.php" method = "post">
  5.         Username: <input type = "text" name = "user" />
  6.         <br />
  7.         Password: <input type = "password" name = "passw" />
  8.         <br />
  9.         <input type = "submit" />
  10.     </form>
  11.  
  12.     </body>
  13. </html>
  14.  
  15.  
  16.  
  17. ------------------------------------------------------------------------------------------------
  18.  
  19.  
  20.  
  21. <html>
  22. <body>
  23.     <?php
  24.         echo "Your username is ".$_POST["user"];
  25.         echo "<br />";
  26.         echo "Your password is ".$_POST["passw"];
  27.     ?>
  28. </body>
  29. </html>
Add Comment
Please, Sign In to add comment