How to Unset a PHP Session
- 1). Open your PHP script using a text, HTML or PHP editor.
- 2). Type the following code at the point in your script where you want to unset the session:
session_unset();
$_SESSION = array(); - 3). Save your script file and upload it to your server.
Source...