下面是计数评论的脚本。这行得通,但现在我想当评论 0 时,它只显示评论,而不是 0 评论。
有什么建议么 ?
<?php
include "con_config_hapshout.php";
$query3 = "SELECT COUNT(comment) FROM comment WHERE msg_id='$id'";
$result3 = mysql_query($query3);
while($total = mysql_fetch_array($result3)){
echo "$total['COUNT(comment)'] comment";
}
?>