url passing parameters in zend framework
问题 In zendframework ,When i am moving to new page with parameters using code as $this->_helper->redirector('my-action','my-controller',null,$params-array); , it showing parameters in every url in application. Can anybody help me in this? 回答1: You can use $params = array('user' => $user, 'mail' => $mail); $this->_helper->redirector($action, $controller, $module, $params); Thanks 回答2: you can try this $this->_redirect('Controllername/action?para1=value¶2=value'); Try this it'work I hope it