November 18, 2010
Clear a two dimensional session array
Question by acctman
Answer by Haim Evgi
if you want to unset all the array is :
unset ($_SESSION['files']);
if you want only specific entry to unset is
unset ($_SESSION['files'][entry]);
Answer by Starx
On addition to above answers, you can remove multiple session variables at once.
unset($_SESSION['file'],$_SESSION['image'],$_SESSION['video']);