QuartzMap/logout.php

9 lines
109 B
PHP

<?php
session_start();
foreach($_SESSION as $sk=>$sv){
unset($_SESSION[$sk]);
}
header("location: /");
?>