Mysql查询记录总数

$query="select   count(*)   as   TOTAL   from  table  ";   
$result=mysql_query($query);   
$temp=mysql_fetch_array($result);   
echo   $temp['TOTAL'];   //输出查询结果(记录数) 

你可能感兴趣的:(Mysql查询记录总数)