4
1
Fork 0
This repository has been archived on 2019-02-05. You can view files and clone it, but cannot push or open issues or pull requests.
Cheaterliste/logout.php
2017-04-06 17:17:16 +02:00

6 lines
76 B
PHP

<?php
session_start();
session_destroy();
header('Location: /');
exit();
?>