PDA

View Full Version : Need to show my Active Users on a new page


america2
08-31-2006, 05:37 PM
Hi Folks.

I need help creating a php script that will allow me to show my Currently Active Users number on this page

http://www.cartoondollemporium.com/forum/groupboard2.php

Its supposed to appear on the left sidebar that says CDE Forums().

Can anybody help me with this?

Any help would be greatly appreciated. Thank you!

nico_swd
09-19-2006, 08:16 PM
Something like this?

define('THIS_SCRIPT', 'something');
define('LOCATION_BYPASS', 1);

include('./global.php');

$datecut = TIMENOW - $vbulletin->options['cookietimeout'];

$allusers = $db->query("
SELECT COUNT(*) AS total
FROM " . TABLE_PREFIX . "session
WHERE lastactivity > ". $datecut
);

$users = $db->fetch_array($allusers);

echo $users['total'];