PDA

View Full Version : Extracting Online Users from SQL Database


OnyxChase
12-02-2007, 04:29 AM
I started a thread (https://vborg.vbsupport.ru/showthread.php?t=163558) which I wanted to extract the amount of total members on the forum. This has worked wonderfully but I am now looking for a way to extract the amount of users online from the database.

I am currently using a PHP script to call up the database and retrieve the information. However I am not familliar with the table I should be using, I'm currently using the vb_session table but it is giving me a wrong number for online users.

My goal is to get the amount of users online (members and guests) on the forum. But this is going to be called from another PHP page not related to the forum.

<?php

mysql_connect('localhost', 'thedogtr_stats', 'stats911');
mysql_select_db('thedogtr_amember');

$r = mysql_query('select count(*) from vbulletin_user');
$r = mysql_fetch_array($r);
$registeredusercount = $r[0];

$r2 = mysql_query('select count(*) from vbulletin_session');
$r2 = mysql_fetch_array($r2);
$onlineusercount = $r2[0];


echo $registeredusercount[0] . ',' . $registeredusercount[1] . $registeredusercount[2] . $registeredusercount[3] . ' Registered Members<br>';
echo $onlineusercount . ' Users Online <u>Now</u>';
?>

Any help would be greatly appreciated!! Thank you!

Opserty
12-02-2007, 09:12 AM
Look in the index.php file of your vBulletin site. There should be a section which is commented something like "Online Users" or "Whats going on", there is code there that you could modify slighty and just use that.

Basically this is what it does:

Fetches rows from the session table that are within the cut-off time (TIMENOW - 1hr(in secs)?)
Counts total vistors
Checks if userid == 0, (if it does then the user is a guest, otherwise the user is member)
Increments seperate counters for member and guest count.