<?php chdir('/home/penguink/public_html/forums'); require_once('/home/penguink/public_html/forums/global.php'); ?> <html> <head> </head> <body> Test <?php $stats = $db->query_read("SELECT threadcount, replycount FROM " . TABLE_PREFIX . "forum"); while ($forum = $db->fetch_array($stats)) { $threads += $forum['threadcount']; $posts += $forum['replycount']; } $threads = vb_number_format($threads); $posts = vb_number_format($posts); $stats ?> </body> </html>