Guest User

Untitled

a guest
Oct 24th, 2018
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. <form action="action_Login.php" method="POST">
  2. Username: <input type="text" name="username"><br>
  3. Password: <input type="password" name="password"><br><br>
  4. <input type="submit">
  5. </form>
  6.  
  7. <html>
  8. <body>
  9. Welcome <?php echo $_POST["username"]; ?><br>
  10. Your password is: <?php echo $_POST["password"]; ?>
  11.  
  12. </body>
Add Comment
Please, Sign In to add comment