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

7 lines
76 B
PHP
Raw Permalink Normal View History

2017-04-04 17:37:09 +00:00
<?php
session_start();
session_destroy();
2017-04-06 15:17:16 +00:00
header('Location: /');
exit();
?>