try to use the forward functio n , example :
Quote:
...
.. // controller 1
public function func1Action() {
$this->getRequest()->setParam("message" Hello world !");
$this->_forward("funct2","controller2");
}
|
and in controller 2
..
Quote:
public function func2Action() {
$msg = $this->_getParam("message");
echo "my messages is :" . $msg ;
}
|