i am using action stack in my zf application. i will explain scenario over here. in first action i have simple form with select box and submit button. now on post i validate data and save and push my second action in action stack... second action that i pushed in stack is also having a form which will save data on post. now the problem occurs here: when action stack gets processed, it pops stack and forwards my second action stored in stack. now when my second action is called it goes directly to the loop in post and tries to validate data because the first action request was post.. and i dont get the form from second action... i know action stack is evil but as of now i have no other alternative. this is just one scenario i have tried to explain my problem.. i would be glad to explain more in detail if i am not able to explain question properly... \[code\] public function firstactionAction() { if($this->getRequest()->isPost()) { //validate and save form $helper = Zend_Controller_Action_HelperBroker::getStaticHelper('actionStack'); $request = new Zend_Controller_Request_Http(); $request->setControllerName('index'); $request->setModuleName('default'); $request->setActionName('secondaction'); $helper->pushStack($request); } else { //creating form object and assigning to view. } }public function secondactionAction() { if($this->getRequest()->isPost()) { //Problem is here.. when action stack gets processed.. it directly comes here. as it uses forward internally.. } else { //creating form object and assigning to view. } }\[/code\]thanks in advance...