update: I'm tidying up and debugging it now.
And make sure it limits querys
But I've got a
working demo
Three things are added: Total views, todays events and latest polls
Note that you can choose exactly how and what you wanna display, everything is 'parameterble' (is that a word?) and works with vb's templates.
To give you an idea how fmbstats.php looks like:
PHP Code:
<?php
$action="birthdays";
include("vbextern.php");
$action="events";
include("vbextern.php");
$action="onlineusers";
include("vbextern.php");
$action="topthreads";
include("vbextern.php");
$action="totalmembers";
include("vbextern.php");
$action="totalthreads";
include("vbextern.php");
$action="totalposts";
include("vbextern.php");
$action="totalviews";
include("vbextern.php");
$action="newestmember";
include("vbextern.php");
$action="listusers";
include("vbextern.php");
$action="listforums";
include("vbextern.php");
$action="listpolls";
include("vbextern.php");
eval("dooutput(\"".gettemplate("vbextern")."\");");
?>
I'll maybe add an option to generate javascript for the latest threads so you can give the webmasters amongst your users the option to let the latest threads be displayed on their homepage.
I expect to release it within a week