Here is how I did it, I have post and thread counts go to my forum in my signature and look torwards the bottom forum on the page.
PHP Code:
$invposts=$DB_site->query_first("SELECT replycount FROM forum WHERE forumid=29");
$invthreads=$DB_site->query_first("SELECT count(*) AS threadcount FROM thread WHERE forumid=66 OR forumid=23 OR forumid=36 OR forumid=27 OR forumid=25 OR forumid=21 OR forumid=24 OR forumid=87");
Then used this in forumhome template.
PHP Code:
Total Posts: <B>$invposts[replycount]</B><br>Total Thread: <B>$invthreads[threadcount]</B>