1
0
mirror of https://github.com/JannikKoester/Tischverwaltung.git synced 2026-01-10 06:40:07 +01:00
Files
Tischverwaltung/newDesign/logout.php
JannikKoester de8f5295ab newdesign
2020-08-17 16:41:58 +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");
}