View Single Post
  #2 (permalink)  
Old 10-05-2007, 12:56 AM
Elemental's Avatar
Elemental Elemental is offline
Senior Member
 
Join Date: Jul 2007
Posts: 119
Default

Quote:
Originally Posted by Jerami View Post
$idSession = new Zend_Session_Namespace('ID_Session');
$idSession->_myid= "5";
add:
Code:
Zend_Registry::set('session', $idSession);
Quote:
Originally Posted by Jerami View Post
Now in my IndexController I try and reset this id like so...

$idSession = new Zend_Session_Namespace('ID_Session');
$idSession ->_myid= "10";
replace with:
Code:
$idSession = Zend_Registry::get('session');
$idSession->myid="10";
see how that goes...
Reply With Quote