thank you
but i dont want to show it in the main page.. i want to show it admin/index.php (admin cp home page)
thats what ive done:
PHP Code:
<p><font size='1'>From here, you can control all aspects of your vBulletin forums.
Please select what you need from the links down the left hand side of this page.</font><p>
<?php
ive add below it the following:
PHP Code:
$numbersmembers=$DB_site->query_first('SELECT COUNT(*) AS users,MAX(userid) AS max FROM user');
$numbermembers=$numbersmembers['users'];
$countposts=$DB_site->query_first('SELECT COUNT(*) AS posts FROM post');
$totalposts=$countposts['posts'];
$avposts = $totalposts / $numbermebers;
$avposts = round($avposts, 2);
echo "<br>Average users posts is (".$avposts.") per user";
but avposts will return to zero. and im getting this warning:
Warning: Division by zero
why it become zero??