How can we destroy the session, how can we unset the variable of a session?

How can we destroy the session, how can we unset the variable of a session?

View Answers

November 15, 2010 at 5:25 PM

Hi all,

You can destroy session by using session_destroy() function.

You can unset the variable of a session by using unset($session['name']), and you can also assign null value like $session['name']==' '.

Thanks









Related Tutorials/Questions & Answers:
Advertisements