mirror of
https://gitlab.com/harald.mueller/aktuelle.kurse.git
synced 2024-11-24 18:51:56 +01:00
13 lines
236 B
PHP
13 lines
236 B
PHP
|
<!-- abmeldung.php -->
|
|||
|
<?php
|
|||
|
session_start();
|
|||
|
?>
|
|||
|
<html>
|
|||
|
<head><title>Anmeldung</title></head>
|
|||
|
<body>
|
|||
|
Hallo, <?php echo $_SESSION["benutzer"]; ?>,
|
|||
|
die Abmeldung wird durchgef<EFBFBD>hrt.
|
|||
|
</body>
|
|||
|
</html>
|
|||
|
<?php session_destroy(); ?>
|