views:

57

answers:

1

How can I pass a result to a particular controller's action in zend?

+1  A: 

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)

Rodolphe