SimpleFS/logout.php
rail5 e5111f56f8
Changed session value names
Made session value names more unique to prevent potential conflict with other applications on the same server
2020-12-30 10:36:39 +00:00

11 lines
237 B
PHP

<?php
session_start();
unset($_SESSION["simplefsvalid"]);
unset($_SESSION["simplefsuser"]);
session_destroy();
echo '<div align="center">Signed out successfully</div>';
header('Refresh: 2; URL = index.php');
?>