我试图刷新一个页面来更新文本框中的值,但是我得到了一个无限循环。
“Firefox检测到服务器正在以永远无法完成的方式重定向此地址的请求。”

if($POST_['rem1'] != $quantity){
$query = "update cart set quantity=".$_POST['rem1'].";";
mysql_query($query);
header('Location: http://~/cart.php');

}
有没有人对如何使它执行一次或更好的实现有什么建议?
谢谢!

最佳答案

永远不会得到false

if($POST_['rem1'] != $quantity){

因此,页面将无限重定向。
应该是
if($_POST['rem1'] != $quantity){

09-26 23:42