表格代码:
<form action="<?php echo $this->baseUrl('/search/general'); ?>" method="post">
<table class="wf">
<tr>
<td>
<a href="#" onclick="$('#general_search').submit(); return false;">
<img src="<?php echo $this->baseUrl('images/dec/search-left.gif'); ?>" style="width: 18px; height: 20px;" alt="" />
</a>
</td>
<td class="input-text">
<input type="text" name="general_search_query" id="general_search_query" value="" />
</td>
<td>
<a href="#" title="" onclick="$('#general_search_query').val(''); return false;">
<img src="<?php echo $this->baseUrl('images/dec/search-right.gif'); ?>" style="width: 15px; height: 20px;" alt="" />
</a>
<input type="submit" name="submit" value="x" />
</td>
</tr>
</table>
</form>
搜索控制器通用方法:
public function generalAction(){
//empty
}
和general.phtml代码:
print_r($_POST);
在网站上使用其他表单一切正常。但这一个,错了。任何提示?
我们将不胜感激。
答案 0 :(得分:0)
尝试检查你的参数:
Zend_Debug ::转储($这 - &GT; Request()方法 - &GT; getParams()方法);