Wouldn't this change actually work better because it would follow the server time like most other things do on the forumhome.
HTML Code:
// <!-- MOST ACTIVE MEMBER -->
$maxposter = $DB_site->query_first("
SELECT user.username,user.userid,count(*) AS total
FROM ".TABLE_PREFIX."user AS user,".TABLE_PREFIX."post AS post
WHERE user.userid=post.userid
AND post.dateline
AND usergroupid NOT IN (5,7)
And dateline >= $starttime
GROUP BY post.userid
ORDER BY total
DESC LIMIT 1
And does this include thread counts AND post counts? I'm trying to set up the percentage of posts this user has made out of the ones for that day. But I keep getting a divison by zero error (which I think i may have stopped, I'm still testing).