我有一个带有一个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的末尾?
由于
答案 0 :(得分:21)
您需要使用隐藏输入:
<input type="hidden" name="first" value="<?php echo htmlspecialchars($first, ENT_QUOTES); ?>" />