8 lines
88 B
PHP
8 lines
88 B
PHP
<?php
|
|
session_start();
|
|
$_SESSION = [];
|
|
session_destroy();
|
|
header('Location: /');
|
|
exit;
|
|
|