gpt4 book ai didi

php - 在 WHILE 循环内 - 尝试踢出到不同的位置

转载 作者:行者123 更新时间:2023-11-29 13:57:32 24 4
gpt4 key购买 nike

我调用了一个数据库,该数据库在 CNT 字段中有 4“行”数据。 (2,1,3,1) 我想对这些进行总计,当我达到最大数字时,踢出到另一个 php 页面。如果计数低于最大值,下面会出现另一个 header (“位置...”命令。

它不会退出 - 你能给我任何建议吗

    $Count = 0;
$Max = 5;
While ($row = mysql_fetch_assoc($result)) {
$Count = $Count + $row["Cnt"];
If ($Count > $Max) {
header("Location: pareAbilities.asp?Who=".$Who."&Logcode=".$LogCode."&A=".$row['A']."&B=".$row['B']."&CNT=".$Count );
}
}

最佳答案

使用exit()之后Header

If ($Count > $Max) { 
header("Location: pareAbilities.asp?Who=".$Who."&Logcode=".$LogCode."&A=".$row['A']."&B=".$row['B']."&CNT=".$Count );
exit();
}

PHP - Should I call exit() after calling Location: header?

关于php - 在 WHILE 循环内 - 尝试踢出到不同的位置,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15607506/

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