Show sourcecode
The following files exists in this folder. Click to view.
webbserverprogrammering/exercises/mysqlintro/kryptering/
admin.php
dbconnection.php
deletepost.php
hemlig.php
index.php
insertpost.php
lås.php
selectposts.php
updatepost.php
admin.php
23 lines UTF-8 Windows (CRLF)
<?php
session_start();
?>
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>admin</title>
</head>
<body>
<h1>Administration</h1>
<ul>
<li><a href="selectposts.php">se användare</a></li>
<li><a href="updatepost.php">uppdatera användare</a></li>
<li><a href="deletepost.php">ta bort användare</a></li>
<li><a href="insertpost.php">ny användare</a></li>
</ul>
<?php
include('lås.php');
?>
</body>
</html>