-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlogout.php
More file actions
27 lines (22 loc) · 698 Bytes
/
logout.php
File metadata and controls
27 lines (22 loc) · 698 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<?php
/*=============================================================
File: logout.php
Projekt im Rahmen des Programmiertechnik Unterrichts der 2BKI2
Thema: Anschaffungsdatenbank
Autor: Tanja Weiser
==============================================================*/
session_start();
$_SESSION = array(); // session mit leerem array füllen
header("Refresh:5;url=login.php"); // Weiterleitung zur login.php nah 5sek
?>
<html>
<head><title>Logout</title>
<link rel="stylesheet" type="text/css" href="css/db.css">
</head>
<body>
<form action="save.php" method="post">
<div>
<text>Sie werden nun ausgeloggt und automatisch zum Login weitergeleitet...</text><br>
</div>
</body>
</html>