Jump to content
MakeWebGames

How Do i Get it to show How many players are online


Recommended Posts

Posted

I am wondering How To get my main menu to Shoe How may players Thats areOn Line Like if there were 5 Players online it will show

Player Online (5)

Thanks

Posted

Database query:

$q=$db->query("SELECT * FROM users WHERE laston>unix_timestamp()-15*60 ORDER BY laston DESC");

$online=$db->num_rows($q);

html:

<div class="Whatever style you want to put here from your css">Total Members:<span>$membs</span>Online Now: <span>$online</span>

 

That should work, and no need to add to the database.

Posted

Um cus I posted at about 4am my time after taking a sleeping pill?

Try this query that isn't nearly so hard on the DB:

$q=$db->query("SELECT ['laston'] FROM users WHERE laston>unix_timestamp()-15*60 ORDER BY laston DESC");

$online=$db->num_rows($q);

Posted

<?php

$Online = mysql_query("SELECT laston FROM users WHERE (laston > unix_timestamp()-15*60) ORDER BY laston DESC", $c) or die(mysql_error());

$Count = mysql_num_rows($Online);

echo 'Users online:'.$Count;

?>

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.   Paste as plain text instead

  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...