. require_once("../inc/util_ops.inc"); function getSingleQuery($query) { $result = _mysql_query($query); if (!$result) return; $cnt = _mysql_fetch_row($result); if (!$cnt) return; _mysql_free_result($result); return $cnt[0]; } require_once("../inc/util.inc"); require_once("../inc/db.inc"); //require_once("../inc/trickle.inc"); require_once("../inc/wap.inc"); // show the home page of app user from envvar $valid = $_GET['id']; if (!$valid || $valid!="whatever-validation-key-you-want") { echo "User id (t.php?id=###) missing!"; exit(); // can't do much without a userid! } db_init(); wap_begin(); // keep a 'running tab' in wapstr in case exceeds 1K WAP limit $wapstr = PROJECT . "
Status Info on
" . wap_timestamp() . "

"; $wapstr .= "#Users: " . getSingleQuery("select count(*) from user") . "
"; $wapstr .= "#Hosts: " . getSingleQuery("select count(*) from host") . "
"; $wapstr .= "#ModYr: " . sprintf("%ld", getSingleQuery("select sum(total_credit)/(.007*17280.0) from host")) . "
"; $wapstr .= "#Cobbl: " . sprintf("%ld", getSingleQuery("select sum(total_credit) from host")) . "
"; // I consider a host active if it's trickled in the last week //$wapstr .= "#Activ: " . getSingleQuery("select count(distinct hostid) from cpdnexpt.trickle " // . "where trickledate>=" . sprintf("%d", mktime() - (3600*24*7))) . "
"; // finally get last 5 trickles for everyone //$wapstr .= show_trickles("a", 0, 5, 1); // limit wap output to 1KB if (strlen($wapstr)>1024) echo substr($wapstr,0,1024); else echo $wapstr; wap_end(); ?>