gpt4 book ai didi

php - 具有先前获取参数的 HTML 表单 GET 方法

转载 作者:行者123 更新时间:2023-11-28 01:59:58 25 4
gpt4 key购买 nike

我在页面上有一个带有获取参数的表单:
index.php?PageID=12

然后我在该页面上有多个表单,当用户选择详细信息时构建页面详细信息。

我的问题是在发布表单时,Get 会覆盖其他 get 参数。

我可以使用 post 但只能发回一次信息,因为在提交下一个表单时 post 值会被删除;

这个想法是表单本身建立一个地址;

  1. ?PageID=12
  2. ?PageID=12&Section=48
  3. ?PageID=12&Section=48&Event=1456

随着用户选择更多项目,依此类推。

感谢您的帮助。

最佳答案

对于带有 method=get 的表单,action 属性中指定的查询字符串参数将被忽略。添加隐藏表单字段等参数:

<form action="index.php" method="get">
<input type="hidden" name="PageID" value="12">
<input type="hidden" name="Section" value="48">
<input type="hidden" name="Event" value="1456">
</form>

您可以使用服务器端脚本或 JavaScript 将查询字符串参数添加为隐藏的表单字段。

关于php - 具有先前获取参数的 HTML 表单 GET 方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14535531/

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