librecat/logout.php

7 lines
92 B
PHP
Raw Permalink Normal View History

2020-05-20 16:08:25 +00:00
<?php
session_start();
session_unset();
session_destroy();
header("Location: /"); die();
?>