表格动作解决了麻烦

时间:2016-09-04 19:28:38

标签: php forms action

我的搜索表单操作出现问题,我想知道:

index.php?act=page1&filter=bell

但我得到了:

index.php?filter=bell

缺少粗体部分:

index.php? <strong>act=page&</strong> filter=bell

这有可能获得以及如何获得?

1 个答案:

答案 0 :(得分:0)

好的,解决了这个问题!我添加了新的隐藏元素,我的问题就解决了。

<form action="" method="get">
   <input type="hidden" name="act" value="page1">
   <input name="filter" type="text" placeholder="Filter" value="<?php echo $pojam; ?>" autofocus class="filter">
</form>

现在我收到地址index.php?act = page1&amp; filter = bell

感谢您的帮助。 :)