Skip navigation.
Home
Online Pen & Paper World

Test

user warning: Table './biermanb_drpl1/accesslog' is marked as crashed and should be repaired query: INSERT INTO accesslog (title, path, url, hostname, uid, sid, timer, timestamp) values('The Eye of Diiar: Scheduling/Recap', 'node/407', '', '38.107.179.240', 0, '118a2b29de014630cfd8cf400a25a783', 423, 1328855883) in /home/biermanb/public_html/modules/statistics/statistics.module on line 64.

<?php
$userTotal = db_fetch_array(db_query("select count(distinct(uid)) from users"));

foreach ($userTotal as $index => $valueu) {
echo $valueu . " users,\n";
}

$postTotal = db_fetch_array(db_query("select count(distinct(nid)) from node where type = 'forum';"));

foreach ($postTotal as $index => $value) {
echo $value . " topics and\n";
}

$commentTotal = db_fetch_array(db_query("select count(distinct(cid)) from comments"));

foreach ($commentTotal as $index => $valuec) {
echo $valuec . " replies so far.\n";
}

?>