well first u'll need to include global.php. if you are not going to include global.php because u want it completely separate from vb then u make this 100x then it could be. anyways once in u include/require global.php just put this code in:
PHP Code:
require_once('./includes/functions_forumlist.php');
cache_ordered_forums(1, 0, 0);
if (is_array($forumcache))
{
foreach ($forumcache AS $forum)
{
$nthreads += $forum['threadcount'];
$nposts += $forum['replycount'];
$totalthreads = vb_number_format($nthreads);
$totalposts = vb_number_format($nposts);
}
}
that will total posts and threads
for member number and newest members use this code:
PHP Code:
$userstats = unserialize($datastore['userstats']);
$totalmembers = vb_number_format($userstats['numbermembers']);
$newusername = $userstats['newusername'];
$newuserid = $userstats['newuserid'];