使用查询页面将FORM中的参数添加到URL

时间:2014-09-17 22:54:49

标签: php

我有一个从index.php查询的搜索页面 例如:http://localhost/sgc/admin/index.php?page=search

然后我在此页面中创建了一个表单,以按名称搜索用户

<form role="form" method="get" action="" class="form-horizontal">
<input type="search" name="name" class="form-control" placeholder="username">
</form>

问题是当提交输入时,它会重定向到index.php并将参数添加到索引页面http://localhost/sgc/admin/index.php?name=

所需的网址格式为http://localhost/sgc/admin/index.php?page=search&name=

它可以使用PHP获得,或者我必须使用javascript

谢谢,抱歉我的英语不好:)

1 个答案:

答案 0 :(得分:0)

尝试:

决定之后: 你的网址:ttp://localhost/sgc/admin/index.php?page = search&amp; name = YOUR_STRING