Obtaining parameters passed with zend php _forward

php, zend-framework

Solution

$test=$this->getRequest()->getParam('test');

Problem

A simple question really. I am using the _forward function in the Zend Php Framework. $this->_forward('formview', null, null, array('test'=>'penu')); So Im forwarding to the formview action with the same controller with the paramater test = 'penu' However how do obtain this value when I am in the action which I am forwarded to.

Original source