How would I go about clearing out a session within Zend_Session? I don't want to completely destroy it. I want to empty it out. A $_SESSION=null correlation with Zend_Session.
The reason is, I have a site that we're debugging and QA'ing. I use Zend_Session to store user based information that is held based on incoming parameters. I would like to be able to clear a session out every time the script makes a query for a user's data (thus clearing out any old information from a past user). >From my understanding of Zend_Session::destroy() it renders the current session unsuable afterwards. I want to say Zend_Session::clear() and then keep using $this->session->myData --- Philip [EMAIL PROTECTED] http://www.gpcentre.net/
