1
mirror of https://github.com/jakejarvis/jbb.git synced 2025-04-26 06:45:22 -04:00
jbb/logout.php
2018-10-18 12:42:02 -04:00

12 lines
170 B
PHP
Executable File

<?php
session_start();
session_destroy();
echo "
<HTML>
<HEAD>
<META HTTP-EQUIV=\"refresh\" CONTENT=\"0;URL=index.php\">
</HEAD>
</HTML>
";
?>