web_AI-3/db/logout.php
2017-01-24 19:28:14 +01:00

10 lines
141 B
PHP

<?php
session_start();
// Destroying All Sessions
if(session_destroy())
{
// Redirecting To Home Page
header("Location: db/login.php");
}
?>