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
https://forums.phpfreaks.com/topic/139316-simple-ifelse-statements-please-help/
Share on other sites

Try using mysql_num_rows:

 

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

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

Archived

This topic is now archived and is closed to further replies.

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