View Single Post
  #7 (permalink)  
Old 07-02-2008, 06:55 PM
jweber jweber is offline
Senior Member
 
Join Date: Jun 2008
Location: Florida
Posts: 108
Default

Zend_Session simply provides a means to interact with PHP sessions, without having to use the $_SESSION global variable. The info is still stored the same way that PHP always stores session info.

If you are doing authentication/authorization on the site then it is generally considered less than ideal to be storing session_id's in a DB, from what I've read.
Reply With Quote