将 GET 参数附加到来自 <form> 的 URL行动

2022-01-04 00:00:00 parameters forms search get php

所以说我目前正在使用 index.php 或 index.php?p=about 在我当前的网络构建中.

So say I'm currently on index.php or index.php?p=about within my current web build.

我正在尝试构建一个将在大多数页面上显示的搜索表单,但我希望表单操作转到 http://mywebsiteurl.com/?p=search&q=GETDATA,因为我网站的分页取决于传递给p"属性的数据.

I am trying to build a search form that will be displayed on most pages, but I want the form action to go to http://mywebsiteurl.com/?p=search&q=GETDATA, as my website's paging depends on the data passed to the 'p' attribute.

如何在提交时以静态方式将搜索参数附加到 URL?

How would I append the search parameter to the URL in a static fashion, upon submission?

推荐答案

也许是这样的:

  <form method="get" action="index.php">
     <input type="hidden" name="p" value="search" />
     <input type="text" name="q" value="" />
     <input type="submit" value="search" />
  </form>

相关文章