Visa Källkod

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

NamnTypStorlek
admin.phpPHP Fil415 B
check_login.phpPHP Fil607 B
index.phpPHP Fil2.5 KB
login.phpPHP Fil985 B
logout.phpPHP Fil585 B

admin.php

17 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
<?php
require "check_login.php";
?>
<!doctype html>
<html lang="sv">
<head>
    <meta charset="UTF-8">
    <title>Adminsida</title>
    <link rel="icon" href="../../m02/Favicon-a.jpg" type="image/x-icon" />
</head>
<body>
<h2>Välkommen <?php echo htmlspecialchars($_SESSION['username']); ?>!</h2>
<h3>Du är nu inloggad<span class="sp">, </span>välkommen</h3>
<a href="logout.php">Logga ut</a>
</body>
</html>