我有问题,这是下面的代码。Zend从文本框中获取值并将其添加到搜索网址中
<form action="" method="post" id="search">
<div class="row collapse">
<div class="ten columns mobile-three">
<input type="text" size="25" name="search" value="<?php echo $this->search ?>"/>
</div>
<div class="two columns mobile-three">
<input type="submit" name="/search/index/keyword/" value="Search"; ?>" class="button expand postfix" id="search_button"/>
</div>
</div>
</form>
当我点击提交按钮,URL应该从id/
到id/search/index/keyword/(here's the search key)
看到下面的代码 – Sahal