这是我的搜索表单:
<form action="" method="get" name="search">
<input name="s" type="text" size="40" value="<?php echo $_GET["s"]; ?>" />
<input name="submit" type="submit" value="Search" />
</form>
当有人点击搜索按钮时,浏览器地址栏中的网址就是这样的:
如何更改它以便仅显示:
希望我很清楚......
答案 0 :(得分:9)
从<input type="submit">
按钮
答案 1 :(得分:0)
与“Ivar Bonsaksen”一样,您必须删除“name”属性,因为the value of every tag in the Form tag with a name attribute
将被发送到服务器并显示在URL中。
P.S: 您可以使用POST方法而不是GET来隐藏所有变量和值。