gpt4 book ai didi

php - SQL 查询返回有限的结果

转载 作者:行者123 更新时间:2023-11-29 16:50:48 26 4
gpt4 key购买 nike

使用 WordPress,运行自定义查询来提取与特定条件相关的所有记录。当我在 phpmyadmin 中运行查询时,它返回所有记录,当我通过 PHP 代码运行查询时,仅返回 2-5 个结果,需要找出如何解决此问题:

// get variables from form page
$txtReg = $_REQUEST['txtReg'];
$txtMsg = $_REQUEST['txtMsg'];

// connect to database
$mydb = new
wpdb('***','***','***','***');

// run the query to fetch all cell numbers from the region variable
$query = "SELECT * FROM tblusers WHERE `Region` ='$txtReg'";
$rows = $mydb->get_results($query);

// display all cell numbers from that region
foreach ($rows as $row) {
$txtCell = $row->Cell;
//doSendSMS($txtCell,$txtMsg);
echo $txtCell;
}

例如,A区有100个手机号码,只有少数被返回和回显,而不是全部100个,所以当我运行短信代码时(这是实际的功能,回显只是用来测试结果),并非所有人都收到短信。

最佳答案

@Caius Jard 关于数据库中的设置是正确的,即使在 sql 查询本身中没有应用限制子句,它实际上也是有限的。该代码在我的设置中有效,但受到默认设置的限制。

测试使用:
$query = "SELECT * FROM tblusers WHERE Region ='$txtReg' LIMIT 100";

关于php - SQL 查询返回有限的结果,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52812682/

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