示例代码如下:
<?php
//数据库连接
$conn=mysql_connect("localhost","root","root")
if(!$conn){
die("对不起,数据库连接失败! ").mysql_errno()
}
//选择数据库
mysql_select_db("testdb")
//sql语句
$sql="SELECT COUNT(*) AS count FROM user"
//执行sql
$query=mysql_query($sql,$conn)
//对结果进行判断
if(mysql_num_rows( $query)){
$rs=mysql_fetch_array($query)
//统计结果
$count=$rs[0]
}else{
$count=0
}
echo $count
?>
返回的$count就是当前数据库的记录条数。
用sql查询语句就能实现 例如 你的表名叫student 里面的性别字段是sex
查询男生有多少人
select count(*) as c from student where sex='男'查询女生有多少人
select count(*) as c from student where sex='女'然后在php里用MySQL_fetch_row就能得出结果了
其实我感觉你这个逻辑没问题,代码有点问题,我是这么认为的,代码应该是这样$idzhi = rand(0,表中数据条数)
$data = $data['id']// 我不明白你这里是什么意思
$arr = $m->where($data >= $idzhi)->limit(8) ->select()
不过我总感觉上面的有问题
$idzhi = rand(0,表中数据条数)
$arr = $m->where("id >= $idzhi")->limit(8) ->select()
不对的话就试试这个,我个人觉得这样是对的,不明白你那个$data['id']是干嘛用的
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)