Advertisement
Guest User

Untitled

a guest
Dec 10th, 2017
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4.  
  5. </head>
  6. <body>
  7.  
  8. <form action="" method="post">
  9.  
  10. käyttäjä:
  11. <input type="text" name="user" /><br>
  12. salasana:
  13. <input type="password" name="pass" /><br>
  14. <input type="submit" value="Kirjaudu" />
  15.  
  16. </form>
  17.  
  18.  
  19. </body>
  20. </html>
  21.  
  22. <?php
  23.  
  24. if ($user == "admin" && $pass == "salasana")
  25. {
  26. echo "sisällä";
  27. }
  28. else
  29. {
  30. echo "ei siällä";
  31. }
  32. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement