Jump to content

[SOLVED] Checking if the query is empty?


spiceydog

Recommended Posts

$query = "Blah blah blah"; 
$result = mysql_query($query) or die ("Error in query " . mysql_error());
$rows = mysql_num_rows($result);
if ($rows < 1)
{
echo "Oops no rows returned";
}
else
{
blah blah blah echoing out your data
}

 

hope that helps

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.