bmspage/logout.php

8 lines
138 B
PHP
Raw Permalink Normal View History

2015-03-30 23:45:30 -04:00
<?php
session_start();
if(session_destroy()) // Destroying All Sessions
{
header("Location: index.php"); // Redirecting To Home Page
}
?>