Quote:
Originally posted by Sadie Frost
Great hack!
Could someone help me figure out how to put this in my forumhome? I tried just inserting the "$percentoftotalposts% of total posts" but when I do that all I get is "% of total posts". Am I doing something wrong?
Thanks for your help!
|
Sadie, you must add this code
Code:
$countposts=$DB_site->query_first('SELECT COUNT(*) AS posts FROM post');
$totalposts=$countposts['posts'];
$percentoftotalposts = round(($userinfo[posts] / $totalposts) * 100,2);
in index.php
after this
Code:
$numbersmembers=$DB_site->query_first('SELECT COUNT(*) AS users,MAX(userid) AS max FROM user');
$numbermembers=number_format($numbersmembers['users']);
And add $percentoftotalposts% of total posts in forumhome template
GL!