Skip to content

Instantly share code, notes, and snippets.

@shohan4556
Created September 4, 2014 12:46
Show Gist options
  • Save shohan4556/ffa171c32749136d879b to your computer and use it in GitHub Desktop.
Save shohan4556/ffa171c32749136d879b to your computer and use it in GitHub Desktop.
<?php
session_start(); //starts the session
session_unset(); // removes all the variable in the session
session_destroy(); //destroy the session
if (!$_SESSION['email']) {
echo "successfully Loged out <br/>";
# code...
} else {
echo "Error Occured!! <br/>";
# code...
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment