6 lines
91 B
PHP
6 lines
91 B
PHP
<?php
|
|
session_start();
|
|
$_SESSION = array();
|
|
session_destroy();
|
|
header('Location: /');
|
|
exit; |