There are couple of methods depending on how the sessions are set and how much of the session data you actually want to destroy.
Have a look at using session_destroy, session_unset, unset('$_SESSION['$varname']), or session_write_close. Descriptions and details of their use can be found on php.net.