Jump to content
MakeWebGames

Hospital Jail Counter in Main Menu always at zero (MWG Fixed-Thank You!)


Recommended Posts

Posted

Hey, you could do a row count like so :

 

 

$HOSPCNT=$db->query("SELECT userid FROM users WHERE hospital>0");
$HCNT=$db->num_rows($HOSPCNT);

 

You can do the same for jail :

 

$JAILCNT=$db->query("SELECT userid FROM users WHERE jail>0");
$JCNT=$db->num_rows($JAILCNT);

 

$HCNT and $JCNT will display how many people are in the hospital and jail...

Hope that helps you..

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