Initial import
This commit is contained in:
commit
c89f3a4171
8 changed files with 712 additions and 0 deletions
9
logout.php
Normal file
9
logout.php
Normal file
|
@ -0,0 +1,9 @@
|
|||
<?php
|
||||
// Start the session
|
||||
session_start();
|
||||
// Destroy the active session, which logs the user out
|
||||
session_destroy();
|
||||
// Redirect to the login pag
|
||||
header('Location: index.php');
|
||||
exit;
|
||||
?>
|
Loading…
Add table
Add a link
Reference in a new issue