Log in

View Full Version : What's going on area / Who's online


swiper the fox
04-16-2009, 01:50 PM
Is there any mod that will display how many members are currently online without having to display every user individually ?

EnIgMa1234
04-16-2009, 01:54 PM
Add this to your php file/plugin

$activeusers = $vbulletin->db->query_first('SELECT COUNT(userid) AS total FROM ' . TABLE_PREFIX . 'user WHERE lastactivity >= ' . $timestamp . ' AND lastactivity < ' . ($timestamp + 86400));

You can then use $activeusers['total'] to display the number online.

swiper the fox
04-16-2009, 02:22 PM
thx......