View sourcecode

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

admin.php

21 lines UTF-8 Unix (LF)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<?php
include("check_login.php");
?>

<!DOCTYPE html>
<html>
<head>
    <meta charset="UTF-8">
    <title>Admin</title>
</head>
<body>

<h2>Välkommen till adminsidna!</h2>

<p>Du är inloggad som: <?php echo $_SESSION['user']; ?></p>

<a href="logout.php">Logga ut</a>

</body>
</html>