Re: [PHP] Re: Customer Session Handlers Using MySQL

2004-05-25 Thread Torsten Roehr
"Paul Higgins" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > > Would I also have to write the sess_write() and sess_read() functions? If I > want to store an array or object, how would I go about doing that? Take a look at PEAR's HTTP_Session source code. It includes a DB session

RE: [PHP] Re: Customer Session Handlers Using MySQL

2004-05-25 Thread Paul Higgins
Would I also have to write the sess_write() and sess_read() functions? If I want to store an array or object, how would I go about doing that? Paul From: Jason Barnett <[EMAIL PROTECTED]> To: [EMAIL PROTECTED] Subject: [PHP] Re: Customer Session Handlers Using MySQL Date: Tue, 25 May 2004

[PHP] Re: Customer Session Handlers Using MySQL

2004-05-25 Thread Jason Barnett
1) Does this mean that I cannot use the $_SESSION[] variable to enter information into the session? Sure you can. When you use a custom session handler then setting / getting the $_SESSION[] variables will use sess_write and sess_read in order to write/read that information. I think the only