Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
function Logout(){
/* Kill session variables and logout*/
unset($_SESSION['logged_in']);
unset($_SESSION['username']);
unset($_SESSION['password']);
unset($_SESSION['Security']);
$_SESSION = array(); // reset session array
session_destroy(); // destroy session.
}