Advertisement
Guest User

Untitled

a guest
May 3rd, 2016
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. <?php
  2.  
  3. ///this is welcome.php
  4.  
  5. $username=$_POST['user']
  6. $password=$_POST['pass']
  7.  
  8.  
  9. $hash ="datei8uhd2823dubq3dgb789863ehdnao9"
  10.  
  11. if (isset($_POST['submit'])){
  12.  
  13. echo $username;
  14. echo $password;
  15.  
  16.  
  17.  
  18. }
  19.  
  20. ?>
  21.  
  22.  
  23. <form action="welcome.php" method="post">
  24. Name: <input type="text" name="name"><br>
  25. password: <input type="text" name="pass"><br>
  26. <input type="submit">
  27. </form>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement