I\'m having trouble figuring out how I can count the number of logged-in users in my application.
What I have: When a user logs in, they get a sessi
Because of the way our site is constructed, it was necessary to use the ajax approach. I'm using jQuery so it's relatively painless.
These lines went into the $(document).ready function.
fnShowImOnline();
setInterval('fnShowImOnline', 120000);
This is the javascript function...
function fnShowImOnline() {
$.get('ajax/im_online.php');
}
And here is the PHP
The count is straight PHP/mySQL.
// Members online.
$online_sql = "SELECT COUNT(*) FROM members where last_checked_in > DATE_SUB(NOW(), INTERVAL 5 MINUTE)";
$online_RS = mysql_query($online_sql);
$online_row = mysql_fetch_row($online_RS);
$online = $online_row[0];
For those times I need to update the numbers dynamically, this bit of ajax does the trick.
$.ajax({
url: 'ajax/members_online.php',
dataType: 'json',
success: function(response) {
if (!isNaN(response.total)) {
$('#OnlineTotal').html(response.total + " Total ");
$('#OnlineOnline').html(response.online + " Online Now");
}
}
})
using this for the PHP/mySQL
// Members online.
$online_sql = "SELECT COUNT(*) FROM members WHERE last_checked_in > DATE_SUB(NOW(), INTERVAL 5 MINUTE)";
$online_RS = mysql_query($online_sql);
$online_row = mysql_fetch_row($online_RS);
$online = $online_row[0];
// Members total.
$total_sql = "SELECT COUNT(*) FROM members";
$total_RS = mysql_query($total_sql);
$total_row = mysql_fetch_row($total_RS);
$total = $total_row[0];
$response = json_encode(array('total'=>$total,'online'=>$online));
echo($response);
This is working well for us.