grublox/logout.php

6 lines
103 B
PHP

<?php
session_start();
$_SESSION = array();
unset($_SESSION);
session_destroy();
header("Location: /");