I have a function in another controller that I want to get using the zend forward function,
public function creanAction(){
$myvbale=22;
return $myvbale *2;
}
in my other controller, I have this:
public function localForwardAction
{
this->view->message=$this->_forward("crean","account");
}
Example from the site:
but
I want the var message to contain the return value or result from the controller / action specified in the forward function ...
thank
source
share