将表单发布到self时如何保留GET参数?

时间:2012-05-09 21:57:05

标签: php html forms post get

我有一个带有一个GET参数的网址。我想发布一个简单的表单,基本上只需要在URL中再添加一个GET参数。

当前网址:mysite.com/page.php?first = 123

表单HTML:

<?php $first = $_GET['first']; ?>

<form method="get" action="page.php?first=<?php echo $first; ?>">
<input type="text" name="second"><br>
<input type="submit" value="Submit"><br>
</form>

我正在尝试将网址设为:mysite.com/page.php?first = 123&amp; second = 456

但是,在提交表单时,页面网址会删除第一个GET参数并更改为:mysite.com/page.php?second=456

如何提交此表单并添加第二个GET参数以在第一个已存在的GET参数之后添加到URL的末尾?

由于

1 个答案:

答案 0 :(得分:21)

您需要使用隐藏输入:

<input type="hidden" name="first" value="<?php echo htmlspecialchars($first, ENT_QUOTES); ?>" />