时间:2021-07-01 10:21:17 帮助过:58人阅读
1、首先,打开php编辑器,新建php文件,例如:index.php。(推荐学习:PHP编程从入门到精通)
2、在index.php中,输入代码:
$conn = new mysqli('10.5.15.177', 'root', '', 'test'); $sql = "select * from stu"; $r = $conn->query($sql); print_r($r->num_rows);
3、浏览器运行index.php页面,此时打印出了stu表的记录数是5。
以上就是php统计数据库有几条数据的详细内容,更多请关注Gxl网其它相关文章!