gpt4 book ai didi

php - MySQL 语句在 while 中不回显变量

转载 作者:行者123 更新时间:2023-11-29 04:53:24 25 4
gpt4 key购买 nike

所以我有以下内容:

$query = "SELECT id,account,status FROM service WHERE status = 'Unpaid'";
$result = mysql_query($query);

while($row = mysql_fetch_row($result)){

$id = $row[0];
$dateEntered = $row[1];
$type = $row[2];
$account = $row[3];
$dateCompleted = $row[4];
$notes = $row[5];
$status = $row[6];

echo $account;
// mailStatusUpdate($account, $status, $dateEntered);

}

echo mysql_error();

在 phpmyadmin 中查询处理正常。当我回显未支付状态记录的 $account 时,它没有回显。有什么问题? PHPmyadmin 处理一切正常并向我显示记录?

最佳答案

您只从查询中检索三列。

$account 应该设置为 $account = $row[1];

$status 应该设置为 $status = $row[2];

关于php - MySQL 语句在 while 中不回显变量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9116118/

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