Page 1 of 1

What to use for storing Sessions

Posted: Tue Aug 20, 2002 1:01 am
by Takuma
Hi,
Does anybody round here know the best way of storing sessions for a login system. I thought of using MySQL and normal PHP session but was wondering if there is any better way.

Posted: Tue Aug 20, 2002 1:49 am
by daemorhedron
Tough call. For long term session, db's are usually the way to go, short term libmm. Look into session_decode() and session_encode() too, could be useful to you in this case.

HTH.

Posted: Tue Aug 20, 2002 2:26 am
by m3mn0n
thanks i was just here to ask! 8)

Thanks

Posted: Tue Aug 20, 2002 3:17 am
by Takuma
Thanks, I will try with DB.