View Single Post
  #1 (permalink)  
Old 07-05-2007, 02:19 AM
Jhorra Jhorra is offline
Member
 
Join Date: Jun 2007
Posts: 33
Default Question about retrieving identity information

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?
Reply With Quote