表单动作地址麻烦
Form action address trouble
我的搜索表单操作有问题,我想得到:
index.php?act=page1&filter=bell
但我得到:
index.php?filter=bell
缺少粗体部分:
index.php? <strong>act=page&</strong> filter=bell
这有可能获得吗?如何获得?
好的,问题解决了!我添加了新的隐藏元素,我的问题就解决了。
<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&filter=bell
感谢您的帮助。 :)
我的搜索表单操作有问题,我想得到:
index.php?act=page1&filter=bell
但我得到:
index.php?filter=bell
缺少粗体部分:
index.php? <strong>act=page&</strong> filter=bell
这有可能获得吗?如何获得?
好的,问题解决了!我添加了新的隐藏元素,我的问题就解决了。
<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&filter=bell
感谢您的帮助。 :)