well, first you want unset session variables, then you want to destroy the session
// Unset all of the session variables.
$_SESSION = array();
// Finally, destroy the session.
session_destroy();
and thanks for reminding me to add that to my redirect !