mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 17:02:41 +01:00
7 lines
100 B
PHP
7 lines
100 B
PHP
|
<?php
|
||
|
session_start();
|
||
|
$_SESSION = array();
|
||
|
session_destroy();
|
||
|
header('Location: index.php');
|
||
|
exit;
|