Advertisement
Guest User

Untitled

a guest
Sep 3rd, 2017
297
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.55 KB | None | 0 0
  1. // Only edit this
  2. $user = "";
  3. $pass = "";
  4.  
  5. // Dont edit this part
  6. $admin_id = 3735928559;
  7. $secretpassword = "something_you_dont_know_and_is_very_long";
  8.  
  9. echo "Chech 1 :" . strspn($user, "123456789")
  10.  
  11. if (!strspn($user, "123456789")){
  12. echo "Chech 2 :" . ($user == $admin_id)
  13. echo "Chech 3 :" . ( $pass == $secretpassword)
  14.  
  15. if ($user == $admin_id && $pass == $secretpassword){
  16. $msg = 'You are admin' . '<br>';
  17. $msg.=$flag;
  18. }
  19. else {
  20. $msg= 'Try harder, you can do it.';
  21. }
  22. }
  23. else {
  24. $msg= 'Don\'t give up so quickly.';
  25. }
  26.  
  27. echo $msg;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement