dongyan4424 2014-06-09 04:28
浏览 341
已采纳

使用while循环检查数组是否为空

I have read several of these posts on the site, but still can't find the answer to my problems. I have a while loop where for every entry in the database the table populates. Although if the table in the database is empty, I want it to display a messaged instead. Any ideas of what is wrong here? (aware of the deprecated tags)

$result = mysql_query("SELECT * FROM blog");

while($row = mysql_fetch_array($result))                    
{           
   if(count($row) === 0)
   {
      echo 'No Data';
   }

   <table code>

}
  • 写回答

6条回答 默认 最新

  • dparivln22034 2014-06-09 04:29
    关注

    Use mysql_num_rows for counting rows from DB.

    <?php
    
    if (mysql_num_rows($result) > 0) {
        echo '<table>';
        while ($row = mysql_fetch_assoc($result)) {
            echo '<tr>...</tr>';
        }
        echo '</table>';
    } else {
        echo 'No result found';
    }
    
    ?>
    

    EDIT: updated code for table.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(5条)
编辑
预览

报告相同问题?

手机看
程序员都在用的中文IT技术交流社区

程序员都在用的中文IT技术交流社区

专业的中文 IT 技术社区,与千万技术人共成长

专业的中文 IT 技术社区,与千万技术人共成长

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

客服 返回
顶部