Using Zend Framework 1.7. Is possible to forward a request with POST method? Something like this:
POST
$this->_forward('action','controller','module',array('method'=>'POST'));
Yes this is possible, Try using following:
$this->_request->setPost(array('param_name' => $paramValue)); $this->_forward('actionName', 'controller', 'module');
1.4m articles
1.4m replys
5 comments
57.0k users