bst/webapp/logout.php
2023-10-31 00:21:50 -04:00

7 lines
102 B
PHP

<?php
session_start();
$_SESSION["user_token"] = null;
header ("Location: index.php");
return;
?>