Quote:
Originally Posted by DRJ
What I do is only count posts for certain forums.
Otherwise, somthing like this should work.
PHP Code:
$postcount = $DB_site->query("SELECT count( * );
FROM vb3_post As p, vb3_thread As t
WHERE p.threadid = t.threadid
AND t.forumid = XX
AND p.userid = YY
");
|
What file would I find that in? I think I'd want to keep the overall post count and have a secondary post count. I'm assuming this would be the only post counter?