I want to send parameter from action to view which is not it's view, since each action has it's .phtml view . I want to redirect to index.phtml page when I am in editAction
inside the edit action I make
$this->_helper->redirector->gotoRoute(array('module' => 'visits', 'controller' => 'visit', 'action' => 'index'), 'visit');
so I can't use like this in the controller action
$this->message="Successfully saved";
I search in google I found that I can use
$this->getRequest()->setParam('message',"Successfully saved");
but How can I get the param in .PHTML page