7 lines
102 B
PHP
7 lines
102 B
PHP
<?php
|
|
session_start();
|
|
$_SESSION["user_token"] = null;
|
|
|
|
header ("Location: index.php");
|
|
return;
|
|
?>
|