denbooru-php/logout.php

7 lines
119 B
PHP
Raw Permalink Normal View History

2020-05-09 18:53:47 +00:00
<?php
session_start();
session_unset();
session_destroy();
header("Location: " . $BASE_PATH . "/index.php"); die();
2020-05-09 18:53:47 +00:00
?>