gpt4 book ai didi

php - 使用传递值重定向页面

转载 作者:太空宇宙 更新时间:2023-11-04 14:42:10 26 4
gpt4 key购买 nike

我有一个真正的问题,它是语法问题。通常,当我需要重定向任何页面时,我只使用 header 函数。有时我会在需要时使用变量,如下所示:

if(condition) header("Location: home.php?wrong=1");

有时可能是:

if(condition) header("Location: home.php?wrong=1&&success=2");

直接使用变量没有问题(错误或成功)。当我需要通过 post 方法从 html 表单重定向一个值时,我使用这段代码并且它有效:

if (condition) header("Location: home.php?id=".$_POST['topic_id']);

但我需要更多,我还需要传递另一个值。所以我使用:

if (condition) header("Location: home.php?id=".$_POST['topic_id']&&wrong=1);

这次我变傻了。任何人都可以通过提供正确的语法来帮助我吗?我也只需要通过 WRONG=1 部分。

最佳答案

你需要:

if (condition) header("Location: home.php?id=" . $_POST['topic_id'] . "&wrong=1");

if (condition) header("Location: home.php?id={$_POST['topic_id']}&wrong=1");

关于php - 使用传递值重定向页面,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13941642/

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