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.

lower_login_attempts.php 274B

1234567891011
  1. <?
  2. //------------- Lower Login Attempts ------------------------------------//
  3. $DB->query("
  4. UPDATE login_attempts
  5. SET Attempts = Attempts - 1
  6. WHERE Attempts > 0");
  7. $DB->query("
  8. DELETE FROM login_attempts
  9. WHERE LastAttempt < '".time_minus(3600 * 24 * 90)."'");
  10. ?>