aktuelle.kurse/m133/Weiteres/Modul_Unterlagen_133_VO/01 Modulinhalte/08 Session Sicherheit/Cookies Sessions (Wal)/PHP7/16 - sessions/loeschen.php
Harald G. Mueller a2dc35ce82 muh
2022-02-24 09:37:43 +01:00

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&ouml;scht!</p>
</body>
</html>