Advertisement
Guest User

Untitled

a guest
Sep 26th, 2017
52
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. <?php
  2. $hwids = array("asdf", "1234");
  3.  
  4. if (!empty($_GET['hwid']) && isset($_GET['hwid'])) {
  5. for ($i = 0; $i < sizeof($hwids); $i++) {
  6. if ($_GET['hwid'] == $hwids[$i]) {
  7. echo '1';
  8. return;
  9. }
  10. echo '0';
  11. return;
  12. }
  13. } else {
  14. echo '0';
  15. }
  16. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement