new-moon-dessert-bar/php/logout.php

8 lines
124 B
PHP

<?php
session_start();
session_unset();
session_destroy();
header("Location: ../index.php");
exit();
?>