Initial commit

This commit is contained in:
2015-03-30 23:45:30 -04:00
commit ec16a1086b
63 changed files with 6856 additions and 0 deletions

7
logout.php Normal file
View File

@ -0,0 +1,7 @@
<?php
session_start();
if(session_destroy()) // Destroying All Sessions
{
header("Location: index.php"); // Redirecting To Home Page
}
?>