Jump to content

Recommended Posts

Hi

 

I have some code and it is for a online players page so it shows who is online i am trying to get it so that if there are no MODS online then it says no MODS.

 

I have the code for selecting the online mods below i tryed an else command but it returned nothing.

 

				$timenow=time();

$select = mysql_query("SELECT * FROM users WHERE online > '$timenow' ORDER by `rank` desc limit 99999999");
while ($ad = mysql_fetch_object($select)){

if($ad->userlevel=="1"){
echo"<font color=red><a href='viewprofile.php?viewuser=$ad->username'>$ad->username</a></font>";
}

}

Link to comment
https://forums.phpfreaks.com/topic/62818-online-players/
Share on other sites

try :

$q="SELECT * FROM users WHERE online > '$timenow' ORDER by `rank` desc limit 99999999"";
$select=mysql_query($q);
while($ad=mysql_fetch_array($select)){
   if($ad['userlevel']=="1"){
      echo"<font color=red><a href='viewprofile.php?viewuser=$ad->username'>$ad->username</a></font>";
   }
}

Link to comment
https://forums.phpfreaks.com/topic/62818-online-players/#findComment-312701
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.