Webbserver - Love Blomberg

Show sourcecode

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

public_html/exercises/databas/ovn_db1/

createtable.php
deletepost.php
index.html
insertpost.php
selectposts.php
showtable.php
updatepost.php

index.html

18 lines ASCII Windows (CRLF)
<!DOCTYPE html>
<html lang="en">
<head>
 <meta charset="UTF-8">
 <meta name="viewport" content="width=device-width, initial-scale=1.0">
 <title>Kompisar</title>
</head>
<body>
 <h1>Kompisdatabas</h1>
 <ul>
  <li><form action="createtable.php" method="get"><button type="submit">Skapa "kompisar" table</button></form></li>
  <li><form action="showtable.php" method="get"><button type="submit">Visa kompisar</button></form></li>
  <li><form action="insertpost.php" method="get"><button type="submit">Skapa kompis</button></form></li>
  <li><form action="updatepost.php" method="get"><button type="submit">Uppdatera kompis</button></form></li>
  <li><form action="deletepost.php" method="get"><button type="submit">Ta bort kompis</button></form></li>
 </ul>
</body>
</html>