Jump to content

Simple IF/ELSE statements. Please Help!!!


Recommended Posts

Hi guys.

I am trying to create an addon for my chat script, and so far so good. I am stuck with a rather embarresingly simple PHP Statement.

 

The script below works fine, but I want it to display "Empty" if there are no SQL Results. E.g. If it returns values, then the Column is not empty, if it does not, the column IS empty, so display [echo "Empty";]

 

I cannot seem to do this. Here is my code. I will be grateful for any tips you can give me.

 

<?php
$sql = "SELECT column FROM table WHERE is_online = 1";
$results = mysql_query($sql);
$newline = "<br />";
while($row = mysql_fetch_array($results)) {
  echo "" . $row['column'] . "" . $newline . "";
}
?>

Link to comment
Share on other sites

Try this:

<?php
$sql = "SELECT column FROM table WHERE is_online = 1";
$results = mysql_query($sql);
$num_rows = mysql_num_rows($results);
$newline = "<br />";
if($num_rows > 0) {
  while($row = mysql_fetch_array($results)) {
    echo "" . $row['column'] . "" . $newline . "";
  }
} else {
  echo "Empty";
}
?>

 

EDIT: GingerRobot beat me  ;D

 

Regards,

zEeLi

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.