gpt4 book ai didi

php - 使用PHP从sql中获取有限的数据

转载 作者:行者123 更新时间:2023-11-29 01:09:51 26 4
gpt4 key购买 nike

实际上我想使用 php while 命令从 sql 中收集数据,如下所示:

while ($res = mysql_fetch_assoc($dat)){//code here}

但是当我运行它时,它会发送 sql 中的所有记录。我只想显示有限的记录。怎么做。还有一个问题,我可以将所有记录分成不同的页面吗?

最佳答案

在查询中添加limitLIMIT

select * from your_table limit 10

或者为循环添加一个count -

$count = 1;
while ($res = mysql_fetch_assoc($dat)){
if($count > 10) {
break;
}
// rest of the code

$count++:
}

关于php - 使用PHP从sql中获取有限的数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30206423/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com