Advertisement
Guest User

Untitled

a guest
Feb 23rd, 2018
108
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. <?php
  2. function canILogin( $username, $password) {
  3.  
  4. if ($username == 'joris' && $password =="netflix") {
  5. return true;
  6. }
  7. else {
  8. return false;
  9. }
  10. }
  11. if (canILogin('joris', 'ne')) {
  12. echo "yep";
  13. }
  14. else {
  15. echo "no";
  16. }
  17.  
  18.  
  19. ?>
  20.  
  21.  
  22. <!DOCTYPE html>
  23. <html>
  24.  
  25. <head>
  26. <meta charset="utf8">
  27.  
  28. </head>
  29. <body>
  30.  
  31. </body>
  32. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement