mirror of
https://gitlab.com/harald.mueller/aktuelle.kurse.git
synced 2024-11-24 02:31:58 +01:00
17 lines
226 B
PHP
17 lines
226 B
PHP
<?php
|
|
session_start();
|
|
?>
|
|
<html>
|
|
<head>
|
|
<title>Sessions</title>
|
|
</head>
|
|
<body>
|
|
<?php
|
|
session_unset();
|
|
session_destroy();
|
|
setcookie(session_name(), "weg damit", 0, "/");
|
|
?>
|
|
<p>Alles gelöscht!</p>
|
|
</body>
|
|
</html>
|