I was wondering how to unset single session variables instead of unseting them all at once.
You can just use unset. i.e unset ($_SESSION['name'])
or session_unregister('name');