Oppaitime's version of Gazelle
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

password_validate.php 174B

123456789
  1. <?php
  2. $DB->query("
  3. SELECT Password
  4. FROM bad_passwords
  5. WHERE Password = '".db_string($_POST['password'])."'");
  6. echo ($DB->has_results() ? 'false' : 'true');
  7. exit();
  8. ?>