9 lines
138 B
PHP
9 lines
138 B
PHP
<?php
|
|
session_start();
|
|
session_destroy();
|
|
header("Location: /");
|
|
if(isset($_GET["deleted"])) { header("Location: /?deleted"); }
|
|
exit;
|
|
?>
|
|
|