This is what I'm using to write the data after a user is logged in:
Code:
//$auth is this -> $auth = Zend_Auth::getInstance();
$data = $authAdapter->getResultRowObject(null,'password');
$auth->setStorage()->write($data);
I understand that it uses sessions to write the data, but how do i get it back to read it?