11 lines
135 B
PHP
11 lines
135 B
PHP
<?php
|
|
class Logout extends Controller{
|
|
|
|
function __construct(){
|
|
session_destroy();
|
|
header('Location: ../loginUI.php');
|
|
}
|
|
}
|
|
|
|
?>
|