If you are looking to use page redirection in zend framework. Like as you know we always need to redirect our web-page from one page to another webpage for example after successful record insertion in you always wants to redirect your web-page into listing page:
1) Open your controller and add the below code for redirection
$this->_helper->redirector('userlisting');
// Now your page will move to userlisting page this code is as similar to header('Location: userlisting') in core PHP.
0 Comment(s)