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.

update_top_snatchers.php 192B

12345678910
  1. <?
  2. $DB->query('TRUNCATE TABLE top_snatchers;');
  3. $DB->query("
  4. INSERT INTO top_snatchers (UserID)
  5. SELECT uid
  6. FROM xbt_snatched
  7. GROUP BY uid
  8. ORDER BY COUNT(uid) DESC
  9. LIMIT 100;");
  10. ?>