How would I setup the total views for the entire forum? I would think it would be some sort of mofication of this code which I found in index.php:
Code:
// get total posts
$countposts=$DB_site->query_first('SELECT COUNT(*) AS posts FROM post');
$totalposts=$countposts['posts'];
if ($totalposts=='') {
$totalposts=0;
}
I tried playing around with it a little, but couldn't figure it out.
Can anybody help me out? It should be an easy hack, but not positive.