mirror of
https://github.com/dyzulk/raisen-app.git
synced 2026-01-26 05:15:29 +07:00
13 lines
191 B
PHP
13 lines
191 B
PHP
<?php
|
|
session_start();
|
|
$_SESSION = [];
|
|
session_unset();
|
|
session_destroy();
|
|
|
|
setcookie('id', '', time() - 3600);
|
|
setcookie('key', '', time() - 3600);
|
|
|
|
header("Location: login.php");
|
|
exit;
|
|
|
|
?>
|