How to Unset a PHP Session

104 27
    • 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...

Leave A Reply

Your email address will not be published.