I want to display a page with two forms. The upper form is unique to this page, but the lower form can already be displayed from another controller. I use the following code to invoke an action of another form, but keep getting this error:
"Message: id is not specified"
# 0 ... / library / Zend / Controller / Router / Rewrite.php (441): Zend_Controller_Router_Route-> assemble (Array, true, true)
My code is:
First controller:
abc_Controller
public function someAction()
{
$this->_helper->actionStack('other','xyz');
}
Second controller:
xyz_Controller
public function otherAction()
{
}
Desired Results:
/abc/some "" xyz/ . , (http://framework.zend.com/manual/en/zend.controller.actionhelpers.html), , . ( XDebug), xyz/other , abc/some , - .
.