我们如何使用php将值从一个页面发布到另一个页面

时间:2011-04-05 06:38:03

标签: php html

        <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>

1 个答案:

答案 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。