繁体   English   中英

如何在MySQL查询中检查无结果

[英]How to check for no result in MySQL query

我想在MySQL查询中检查无结果,并向用户返回无结果消息。 如何将其与当前代码集成?

$result = mysqli_query($con,$sql);

while ($row = mysqli_fetch_array($result)) {

echo '<div class="mydiv">';

if($row['photo']){

    echo "<p>" . '<span class="glyphicon" aria-hidden="true"></span>' . '</p>' . '<p>' . "<img src=http://localhost:8888/example/images/" . $row['photo'] . "><hr>";

}else
echo '<p>' . '<span class="glyphicon" aria-hidden="true"></span>' . $row['message'] . '</p>';
echo '<p>' . '~' . $row['username'] . '</p>';
echo '<p>' . $row['datetime'] . ' ' .'(UTC)' . '</p>';
echo '</div>';

}

我希望在找不到记录时显示“无结果”消息。 如何将其集成到现有代码中。 请指教。

if ($row = mysql_num_rows($result) == 0){
echo "<h3>There are no result found.</h3>";
}
if ($result = mysql_query($sql) && mysql_num_rows($result) > 0) {
    // there are results in $result
    // whatever you want to do with your results
} else {
    // no results
echo "<h3>There are no results found.</h3>";
}

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM