basically I want this:
function fooAction(){
$var = 'test';
$this->_forward('bar');
}
function barAction(){
print $var; // prints 'test'
}
AS you can see, I want to share data from the first action.
Is it possible ?
--
View this message in context:
http://www.nabble.com/How-to-get-data-after-calling-%24this-%3E_forward%28%29-tp16340300p16340300.html
Sent from the Zend Framework mailing list archive at Nabble.com.
