ProxyBro/web/logout.php

8 lines
123 B
PHP

<?php
session_start();
$_SESSION = [];
session_unset();
session_destroy();
header("location: /");