It can be done by phpinclude. Here's a query that should do it:
Code:
mysql> select f.threadcount,f.replycount,sum(t.views) from forum f, thread t where t.forumid = 16 and f.forumid=16 group
by t.forumid;
+-------------+------------+--------------+
| threadcount | replycount | sum(t.views) |
+-------------+------------+--------------+
| 36 | 278 | 2405 |
+-------------+------------+--------------+
1 row in set (0.04 sec)