MastodonHelp/web/site/mustard/logout.php
pezcurrel 5ec1354546 ...
2020-10-18 06:53:27 +02:00

9 lines
122 B
PHP

<?php
session_name('mustard');
session_start();
$_SESSION=array();
session_destroy();
header('Location: index.php');
?>