当前位置: 代码迷 >> PHP >> php 查询语句select count(*) from 表 where type='文艺生活'如何输出结果
  详细解决方案

php 查询语句select count(*) from 表 where type='文艺生活'如何输出结果

热度:98   发布时间:2016-04-28 22:28:18.0
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]?>
  相关解决方案