在PHP表单中使用POST方法,但参数显示在URL中

时间:2014-10-24 04:45:03

标签: php html

我当前的页面是index.php?page = 21。在该页面中,我有一个使用POST方法发布myParamater的表单,以便它不会出现在URL中。

<form method="POST" action="index.php?page=21">
      <input name="myParamater" type="hidden" value="1">
      <input type="submit" value="Go">
</form>

当我点击我的提交按钮时,会发生一些奇怪的事情。它带我到index.php?myParamater = 1。当我将表格更改为

时也是如此
<form method="POST" action="self">
      <input name="page" type="hidden" value="21">
      <input name="myParamater" type="hidden" value="1">
      <input type="submit" value="Go">
</form>

它带我到index.php?page = 21&amp; myParamater = 1

我该怎么做才能使用新的参数myParameter重定向到我当前的页面(index.php?page = 21),而不会让myParamater出现在URL中?

1 个答案:

答案 0 :(得分:1)

看起来你的方法帖子不起作用,它默认使用GET方法。我在我的浏览器中尝试过它并且工作正常..尝试使用其他浏览器..或重新加载..