If you just want to clear certain data from the session, you could simply [man]unset/man each relevant item, e.g.:
unset($_SESSION['cc_nbr']);
unset($_SESSION['cc_exp_date']);
If you want to clear all session data, just reinitialize $SESSION as an empty array (but do not ever unset $SESSION itself):
$_SESSION = array();