1
0
mirror of https://github.com/JannikKoester/Tischverwaltung.git synced 2026-01-08 05:54:20 +01:00
Files
Tischverwaltung/logout.php
JannikKoester 90155483d8 neues Design
2020-08-17 16:44:21 +02:00

12 lines
181 B
PHP

<?php
require 'settings.php';
session_start();
if(isset($_POST['logoutBtn'])){
session_destroy();
header("location:index.php");
}
else
{
header("location:index.php");
}