Re: [PHP] session_unset() and session_destroy()

2001-05-23 Thread Yasuo Ohgaki
Arcady Genkin wrote: > I don't think that I grasp the difference between session_unset() and > session_destroy() functions. Would anyone explain? session_unset() frees session vars from memory. session_destroy() delete session from session storage. If you do session_unset(), it will results se

[PHP] session_unset() and session_destroy()

2001-05-22 Thread Arcady Genkin
I don't think that I grasp the difference between session_unset() and session_destroy() functions. Would anyone explain? Also, suppose that I want to totally wipe out an existing session, and then start a new one. Can I still do session_register() after I do session_unset() or session_destroy()