How do I pass parameters using redirector helper in Zend Framework?
- by terrani
Hi,
Is it possible to pass parameters ($_POST or $_GET) with redirectory helper in Zend Framework? The following code redirect to index action of current controller, but I would like to pass some parameters to it as well.
$this->_helper->redirector("index");
Zend Documenataion does not say anything about it.