gpt4 book ai didi

带有随机 ID 变量的 PHP header

转载 作者:行者123 更新时间:2023-11-29 08:26:44 25 4
gpt4 key购买 nike

以下代码面临问题:

<?php   
$con = mysql_connect("localhost","","");
if (!$con){
die('Could not connect: ' . mysql_error());
}
mysql_select_db("abc", $con);

$ids = intval($_GET['id']);
if ($ids==0){
$id = rand (0,10);
}

header("Location: http://index.php?id=$id");
?>

浏览器显示“此页面有太多重定向”。请任何人帮我解决这个问题。

最佳答案

即使 $_GET['id'] 已设置为非零值,您也始终调用 header()。因此你有一个无限的重定向循环。

如果将 header() 调用移至 if block 内,无限循环将会消失。

关于带有随机 ID 变量的 PHP header ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17738849/

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