View Single Post
  #1 (permalink)  
Old 10-04-2007, 07:58 PM
Jerami Jerami is offline
Junior Member
 
Join Date: Oct 2007
Posts: 2
Default Zend_Session ???

Im trying to utilize the Zend_Session_Namespace functionality and I can't get this thing to go...any help would be appreciated

My bootstrapper has the following...

$idSession = new Zend_Session_Namespace('ID_Session');
$idSession->_myid= "5"

Now in my IndexController I try and reset this id like so...

$idSession = new Zend_Session_Namespace('ID_Session');
$idSession ->_myid= "10";

Then in my view I display this...and it always comes up as 5...so its not modifying the session variable...im assuming its "read-only"? How can I get it so I can modify this value...

Thanks
Reply With Quote