Show sourcecode
The following files exists in this folder. Click to view.
webbserverprogrammering/exercises/mysqlintro/inlogg/
admin.php
dbconnection.php
deletepost.php
hemlig.php
index.php
insertpost.php
lås.php
selectposts.php
updatepost.php
index.php
27 lines UTF-8 Windows (CRLF)
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Logga in</title>
</head>
<body>
<form method="post" action="hemlig.php">
<table>
<tr>
<td>Användarnamn</td>
<td><input type="text" name="namn"></td>
</tr>
<tr>
<td>Lösenord</td>
<td><input type="text" name="lösen"></td>
</tr>
<tr>
<td></td>
<td><input type="submit" name=""></td>
</tr>
</table>
</form>
</body>
</html>