Ok...Multiple forums?
Find: (from the code above)
PHP Code:
$singleforum=$DB_site->query_first('SELECT COUNT(*) AS posts FROM post WHERE forumid=X AND postuserid=$post[userid]');
Change to:
PHP Code:
$singleforum=$DB_site->query_first('SELECT COUNT(*) AS posts FROM post WHERE forumid=X AND forumid=Y AND forumid =Z AND postuserid=$post[userid]');
Change X, Y & Z to the forumids...
To add more, just include :
Code:
AND forumid=theforumid
Satan