我调用了一个在 CNT 字段中有 4 个“行”数据的数据库。(2,1,3,1) 我想合计这些,当我达到最大数字时,跳到另一个 php 页面。如果计数低于最大值,则下面还有另一个 header("Location...) 命令。
它不会踢出去 - 你能给我任何建议吗
$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 );
}
}