PHP:如果表中没有行,请执行此操作

时间:2014-10-19 23:33:28

标签: php if-statement

我有一些代码循环遍历MySQL数据库中的行,如下所示:

while($query2=mysql_fetch_array($query))

我怎样才能创建和IF语句来检查行是否为空?例如

if $NoRowInDB {

echo 'Sorry, try again';

}

1 个答案:

答案 0 :(得分:2)

我认为这就是你的意思:

if (mysql_num_rows($query2) == 0) {
    echo "No rows found, nothing to print so am exiting";
    exit;
}