How can I pass data from action in controller to view in another controller? From action in controler to view in the same controller is easy: I simply write in action's function :
$this->view->assign('error', 'Wrong login');
and in view I recieve it in this way:
<?=$this->escape($this->error);?>
but how can I do it to receive it in view of another controller?