Jump to content

Recording most members online at once


slyte33

Recommended Posts

you can create table settings

row 1

id        name        value

1

 

$maxmemonline=mysql_fetch_array(mysql_query("SELECT value FROM pf_settings WHERE id='1'"));
  
            $result = mysql_fetch_array(mysql_query("SELECT COUNT(*) FROM pf_online"));

          if($result[0]>=$maxmemonline[0])
          {
            $tnow = date("D d M Y - H:i");
            mysql_query("UPDATE pf_settings set name='".$tnow."', value='".$result[0]."' WHERE id='1'");
          }

This will give output

 

row 1

id    name                                                value

1    Wed 05 Feb 2010 - 22:01                228

Link to comment
Share on other sites

you can create table settings

row 1

id        name        value

1

 

$maxmemonline=mysql_fetch_array(mysql_query("SELECT value FROM pf_settings WHERE id='1'"));
  
            $result = mysql_fetch_array(mysql_query("SELECT COUNT(*) FROM pf_online"));

          if($result[0]>=$maxmemonline[0])
          {
            $tnow = date("D d M Y - H:i");
            mysql_query("UPDATE pf_settings set name='".$tnow."', value='".$result[0]."' WHERE id='1'");
          }

This will give output

 

row 1

id    name                                                value

1    Wed 05 Feb 2010 - 22:01                228

 

That's how I thought it might work, thanks!

 

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.