////Get number of members
//$totalmembers
$numbersmembers=$DB_site->query_first('SELECT COUNT(*) AS users,MAX(userid) AS max FROM user');
$totalmembers = number_format($numbersmembers['users']);
////Get total number of posts
//$totalposts
$countposts=$DB_site->query_first('SELECT COUNT(*) AS posts FROM post');
$totalposts = number_format($countposts['posts']);
////Get total number of threads
//$totalthreads
$countthreads=$DB_site->query_first('SELECT COUNT(*) AS threads FROM thread');
$totalthreads = number_format($countthreads['threads']);
////Get username and id of newest member
//$newestuser[user]
//$newestuser[id]
$newestuser=$DB_site->query_first("SELECT userid,username FROM user WHERE userid=$numbersmembers[max]");
$newestuser[user] = unhtmlspecialchars($newestuser['username']);
$newestuser[id] = unhtmlspecialchars($newestuser['userid']);
////Get username, id, post count, and post percent of top poster
//$top[user]
//$top[id]
//$top[count]
$topposter=$DB_site->query_first('SELECT userid,username,posts FROM user ORDER BY posts DESC LIMIT 10');
$top[user] = unhtmlspecialchars($topposter['username']);
$top[id] = unhtmlspecialchars($topposter['userid']);
$top[count] = number_format($topposter['posts']);
#########################
## Latest Forum Topics ##
#########################
echo "Last 5 Thread Postings:<p>"; //Seperate from Stat Display
$maxthreadchars = "30";
$threads=$DB_site->query("SELECT threadid,thread.title,replycount,postusername,postuserid,dateline,views,lastposter,lastpost FROM thread ORDER BY lastpost DESC LIMIT 5");
while ($thread=$DB_site->fetch_array($threads))
{
$lastposttime = vbdate("$timeformat$dateformat",$thread['lastpost']);
$title = unhtmlspecialchars($thread['title']);