Hi,
I have a form, created with Zend_Form, with method = GET used for searching records with elements as below:
[form] user name [input type="text" name="uname"] [input type="submit" value="Search" name="search"] [/form]
After form is submitted all the GET parameters along with submit button value are appearing in the url.
http://mysite.com/users/search?uname=abc&search=Search
How to avoid submit button value appearing in the url? is custom routing the solution ?