gpt4 book ai didi

php - 当我已经有一个时使用 GET 方法?在我的查询字符串中

转载 作者:行者123 更新时间:2023-12-04 15:04:58 24 4
gpt4 key购买 nike

这似乎是一个很容易回答的问题,但我不知道该怎么做,或者是否可能。

我正在构建一个搜索栏,以便用户可以在网站上搜索优惠。它使用 POST 方法工作,但它不更新查询字符串,我希望用户能够看到他们搜索的内容,所以我必须使用 GET方法。

我的url设置如下:

http://mysitename.com/index.php?rs=offers

?rs=offers 定义在优惠页面上。没有 ?rs= 它注册为直接访问 index.php 文件,并给出错误。这就像一个反黑客的东西。

我想知道的是如何在 ?rs=offers 之后启动 GET 方法,因此它的内容如下:

http://mysitename.com/index.php?rs=offers&find=whatisearched

现在看起来像这样:

http://mysitename.com/index.php?find=whatisearched

这给出了我上面描述的错误。

这也是当前的表单布局,因此您可以查看其中是否有我可能定义错误的内容。

<form method='get' action='index.php?rs=offers'>
<table class='offers'>
<tr>
<th>Search All Offers</th>
</tr>
<tr>

<td>

<input type='text' name='find' maxlength='255' style='width:200px' value='' />

<input type='submit' value='Search' />

</td>

</tr>

</table>
</form>

最佳答案

试试这个:

<form method='get' action='index.php'>
<input type='hidden' name='rs' value='offers' />
.
.
.
</form>

关于php - 当我已经有一个时使用 GET 方法?在我的查询字符串中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11692856/

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