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

admin.php

18 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
<?php
require "check_login.php"// Kollar att användaren är inloggad
?>
<!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> <!-- Visar användarnamn -->
<h3>Du är nu inloggad<span class="sp">, </span>välkommen</h3>
<p>Din roll: <strong><?php echo htmlspecialchars($_SESSION['role']); ?></strong></p> <!-- Visar roll -->
<a href="logout.php">Logga ut</a> <!-- Logga ut-länk -->
</body>
</html>