php_begins Posted February 8, 2012 Share Posted February 8, 2012 I need to store lot of errors separately like $_SESSION['client_error'],$_SESSION['state_error'] etc. According to zend documentation do I have to store it like this for each error? $client_error = new Zend_Session_Namespace(''client_error); $state_error = new Zend_Session_Namespace('state_erro'); and so on? This is my code in the controller. $this->view->state_error_message=$state_error; After I echo $this->state_error in the view I want to unset it. Quote Link to comment https://forums.phpfreaks.com/topic/256636-unsetting-a-session-through-zend-view/ Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.