I want to create a little plugin that shows the weekly top posters in a list.
I've grabbed a bit of code from the forum stats plugin to get started, but now i'm wondering how I can get/specify the users post count for a specific timespan (a week for example).
PHP
1
2
3
4
5
6
7
8
$res= $db->query("SELECT user_id, user_name, user_postcount FROM $db_users WHERE 1 ORDER by user_postcount DESC LIMIT 10");