I'd like to clear a specific session, how would I go about doing that.
$_SESSION['files'][]
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]);
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With