Guest User

Untitled

a guest
Jul 19th, 2018
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.16 KB | None | 0 0
  1. <?php
  2. $user = $_GET['u'];
  3. $users = json_decode('{"users":["jamie","john"]}');
  4. if(in_array($user, $users->users)){
  5. return true;
  6. }
  7. else {
  8. return false;
  9. }
  10. ?>
Add Comment
Please, Sign In to add comment