Ok, Thanks alot!
// I would add rep but I guess it's disabled.
- Pc1203
EDIT: I get a blank page after trying this code:
Code:
<?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>
EDIT2: Uh-Oh. I guess I miss-lead you. I want to display a USERS posts/join date/if online/not, ect. Sorry.
- Pc1203