Visa Källkod

The following files exist in this folder. Click to view.

NamnTypStorlek
admin.phpPHP Fil612 B
check_login.phpPHP Fil1.1 KB
index.phpPHP Fil1.7 KB
login.phpPHP Fil2 KB
logout.phpPHP Fil710 B

logout.php

24 lines ISO-8859-1 BOM Unix (LF) - Type: PHP Fil
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<?php
session_start
(); // Starta sessionen
setcookie("rememberme"""time() - 3600"/"); // Tar bort rememberme-cookie
session_unset();  // Tömm session
session_destroy(); // Förstör session
header("Location: index.php"); // Skicka till startsidan
exit;
?>
<!doctype html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport"
          content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    <title>Logga UT</title>
    <link rel="stylesheet" href="style.css">
    <link rel="icon" href="../../m02/Favicon-a.jpg" type="image/x-icon">
</head>
<body>

</body>
</html>