I want to pass a variable from one controller to another which should be eventually passed to the view. Unfortunately using return $this->forward('controllerB/actionB'); from controllerA where controllerB/actionB has a variable that needs to be passed to the view is not passed.
What is the best way to route variables from controllers to controller and finally to view ?