<form name="frm1" method="post" action="/123/123/123/123/result_page.php">
<td class="search_bar"><input type="text" name="textfield" style="width:95%; height:28px; border:0px;" /></td>
<td class="search_btn"><a href="/123/123/123/123/result_page.php?searchCity=<?php $_POST['textfield'] ?>"></a></td>
</form>
答案 0 :(得分:3)
在表单中添加提交按钮:
<form name="frm1" method="post" action="/123/123/123/123/result_page.php">
<td class="search_bar">
<input type="text" name="searchCity" />
</td>
<td class="search_btn">
<input type="submit" value="Search" />
</td>
</form>
拥有您的链接将绕过表单并生成GET请求,而不是POST。