10 lines
No EOL
189 B
PHP
10 lines
No EOL
189 B
PHP
<?php
|
|
require_once 'config.php';
|
|
require_once 'includes/Database.php';
|
|
require_once 'includes/Auth.php';
|
|
|
|
$auth = new Auth();
|
|
$auth->logout();
|
|
|
|
header('Location: index.php');
|
|
exit; |