The following files exist in this folder. Click to view.
| Namn | Typ | Storlek |
|---|---|---|
| admin.php | PHP Fil | 415 B |
| check_login.php | PHP Fil | 607 B |
| index.php | PHP Fil | 2.5 KB |
| login.php | PHP Fil | 985 B |
| logout.php | PHP Fil | 585 B |
admin.php17 lines ISO-8859-1 BOM Unix (LF) - Type: PHP Fil
<?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>