ProxyBro/web/logout.php

8 lines
123 B
PHP
Raw Normal View History

2021-02-15 09:01:28 +01:00
<?php
session_start();
$_SESSION = [];
session_unset();
session_destroy();
header("location: /");