View Single Post
  #5 (permalink)  
Old 07-01-2008, 12:43 PM
megainfo megainfo is offline
Junior Member
 
Join Date: Jul 2008
Posts: 6
Default

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 ;

}
Reply With Quote