How to send values to a controller?
How can I pass a re开发者_JS百科sult to a particular controller's action in zend?
You can use POST and GET as any standard HTML Forms.
Just don't forget to build correctly your URL :
Using GET : (baseUrl)/(Controller)/(Action)/Param1/Value1/Param2/Value2
Using POST : (baseUrl)/(Controller)/(Action)
精彩评论