当前位置:Gxlcms > PHP教程 > 如何在条件查询时输出条目数量统计

如何在条件查询时输出条目数量统计

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

查询代码
 $sql = "SELECT * FROM record where bumen like'%$bumen' and keduimokuai like '%$keduimokuai' and keti like '%$keti' and xingming like'%$xingming%'";	  $result = mysql_query($sql);       ?>  	  		表名:培训台账查询
返回 '; foreach($row as $v) echo ""; echo ''; } ?>
序号 部门 科队/模块 姓名 培训时间 培训课题 培训心得
$v

查询已经实现 怎么统计查询出来的数量并且输出?


回复讨论(解决方案)

$count=mysql_num_rows($result);

人气教程排行