Hey everyone,
I have a controller in it I save data to the database and I have it passing variables to a view with
$this->view->setVars(array(
'msg' => $msg,
'action' => $action
));
and I am picking the view file like
$this->view->pick('beta/signUp.phtml');
However the view is not being loaded.
Any ideas? The views have been loading fine else where, and I would like to avoid a simple black text on white screen.
Thanks!