I'm trying to figure out how to skip printing a row from a MySQL table if the variable is empty. For instance, I have a table full of information. I have a while loop that echos the result. How can I skip an entry if a variable is empty?
For instance, can I cancel the echo if 'tweet1' is empty in the row?
mysql_connect ($DBsever, $DBusername, $DBpass) or die ('I cannot connect to the database becasue: '.mysql_error());
mysql_select_db ("$DBname");
$query = mysql_query("SELECT * FROM $DBtable ORDER BY time");
while ($row = mysql_fetch_array($query)) {
echo "<br /><strong>".$row['time']." ".$row['headline']."</strong><br/>".$row['description']."<br />".$row['story1']." <a href=".$row['link1']." target='_blank'>".$row['link1']."</a> ".$row['tweet1']."<br />";}
You can use continue
control structure for skip an iteration. Please read the docs
Example:
if(!$row['tweet']) {
continue;
}
You could also not return rows without information in tweet1
, this would make the php check for data in tweet1 unnecessary.
$query = mysql_query("SELECT * FROM $DBtable WHERE tweet1 IS NOT NULL ORDER BY time");
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With