Redirect to new page w/ POST data (PHP/Zend)

前端 未结 6 582
青春惊慌失措
青春惊慌失措 2020-12-06 10:02

I\'m trying to figure out how to redirect to a new page (different application, controller, action) and maintain the current POST data.

My app is validating the POST

6条回答
  •  再見小時候
    2020-12-06 10:45

    Rather than redirecting the browser to the new location, why not just forward the request from the controller to the other controller?

    return $this->_forward("action", "controller", "module");
    

提交回复
热议问题