gpt4 book ai didi

php - 根据用户点击的链接重定向用户

转载 作者:行者123 更新时间:2023-12-02 05:11:34 25 4
gpt4 key购买 nike

有没有办法根据用户点击的链接来指定标题位置?如果可能的话,我更喜欢用 PHP 来做这件事。

我想在用户点击几个按钮中的任何一个(即下一步、返回、保存等)时提交表单,并且在提交表单后,每个按钮都需要以不同方式重定向用户。

例子

HTML - form2.html

<form name="form2" id="form2" method="post" action="form2-exec.php">        
<!-- Form Elements -->
<a href="form1.php"><input type="submit" value="BACK" /></a>
<a href="form3.php"><input type="submit" value="SUBMIT" /></a>
</form>

PHP - form2-exec.php

// Connect to database
// Insert & ON DUPLICATE KEY UPDATE Statements
header("location: form3.php");

最佳答案

您不需要 anchor 标签。你能试试这样的东西吗:

<input type="submit" name="whereto" value="BACK" />
<input type="submit" name="whereto" value="SUBMIT" />

PHP - form2-exec.php

// Connect to database
// Insert & ON DUPLICATE KEY UPDATE Statements
if ($_GET['whereto'] == 'BACK') {
header("location: form1.php");
} elseif ($_GET['whereto'] == 'SUBMIT') {
header("location: form3.php");
}

您可以在 http://php.net/manual/en/reserved.variables.php 找到更多关于 PHP 预定义变量的信息

关于php - 根据用户点击的链接重定向用户,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15368359/

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