php 查询语句select count(*) from 表 where type='文艺生活';怎么输出结果
<?php
$sql="select count(*) from 表 where type='文艺生活'";
$result=mysql_query($sql);
while($row=mysql_fetch_array($result)){
?>
<td height="25" align="center" valign="middle">
?? </td>
<?php
}
?>
不知道这块该怎么写输出结果,该怎么写
------解决方案--------------------
$sql="select count(*) as `cnt` from 表 where type='文艺生活'";
$result=mysql_query($sql);
if($row=mysql_fetch_array($result)){
?>
<td height="25" align="center" valign="middle"> <?php echo $row['cnt']?> </td>
<?php
}
------解决方案--------------------把 count(*) 改成 *
------解决方案--------------------或者这样:
<td height="25" align="center" valign="middle"> <?php echo $row[0]?> </td>
------解决方案--------------------<?php echo $row[0]?>