"<form action='".$_SERVER['REQUEST_URI']."' method='GET'>
<select name='fields'><option selected>--field--</option>".$field_info."</select>
<input type='hidden' name='ListNum' value='".$_GET['ListNum']."'/>
<input type='hidden' name='page' value='".$_GET['page']."'/>
<input type='text' name='keyword'/>
<input type='submit' name='' value='search'/>

</form>"

接收表单数据的页面还有其他的参数,为防止覆盖这些参数,把这些参数利用隐藏的input 提交到接收页面,这样所有参数都能生效。