Files
php7-mysql-data/Kapitel_5/Lektion_3/login_loesung/logout.php
2016-08-21 00:15:10 +02:00

8 lines
96 B
PHP
Executable File

<?php
session_start();
unset($_SESSION['benutzername']);
header('Location: login.php');
exit;