Jump to content

[SOLVED] Updating database on browser close.


GB_001

Recommended Posts

The best way to accomplish that is to have a field in your users table like 'last_active'. And then every time the user does something on your site, update that field with the current time. To get 'online' users, just select the ones where last_active is less then 10 minutes old.

Link to comment
Share on other sites

it would be easier to do something like this

 

<?php
$id = $_SESSION['id'];
mysql_query("UPDATE users SET last_active=NOW() WHERE id='$id'");

$wq = mysql_query("SELECT username FROM users WHERE last_active > (NOW() - INTERVAL 5 MINUTE)");

while($row = mysql_fetch_array($wq)){
echo $row['username'] . "<br>\n";
}

?>

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.