当前位置:Gxlcms > PHP教程 > php查询语句selectcount(*)from表wheretype='文艺生活'如何输出结果

php查询语句selectcount(*)from表wheretype='文艺生活'如何输出结果

时间:2021-07-01 10:21:17 帮助过:1人阅读

php 查询语句select count(*) from 表 where type='文艺生活';怎么输出结果
$sql="select count(*) from 表 where type='文艺生活'";
$result=mysql_query($sql);
while($row=mysql_fetch_array($result)){
?>
??
}
?>
不知道这块该怎么写输出结果,该怎么写
------解决方案--------------------

$sql="select count(*) as `cnt` from 表 where type='文艺生活'";
$result=mysql_query($sql);
if($row=mysql_fetch_array($result)){
?>

}

------解决方案--------------------
把 count(*) 改成 *
------解决方案--------------------
或者这样:

------解决方案--------------------

人气教程排行