mirror of
https://github.com/JannikKoester/Tischverwaltung.git
synced 2026-01-08 05:54:20 +01:00
12 lines
181 B
PHP
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");
|
|
} |