ahhh, i see
that wouldn't be a problem
where do you want to put it?
if you want to put it on the forumhomepage open index.php
find this:
PHP Code:
$numbersmembers=$DB_site->query_first('SELECT COUNT(*) AS users,MAX(userid) AS max FROM user');
$numbermembers=number_format($numbersmembers['users']);
// get total posts
$countposts=$DB_site->query_first('SELECT COUNT(*) AS posts FROM post');
$totalposts=number_format($countposts['posts']);
$countthreads=$DB_site->query_first('SELECT COUNT(*) AS threads FROM thread');
$totalthreads=number_format($countthreads['threads']);
and below add this:
$avposts= round($totalposts/$numbermebers);
then you can use $avposts in your forumhome template