Webbserverprogrammering 1

Show sourcecode

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

webbsrvprg/exercises/sql-intro/sql-intro1/

createtable.php
insertpost.php
skrivut.php
sql-intro1-index.php
tabort.php
uppdatera.php

sql-intro1-index.php

20 lines UTF-8 Windows (CRLF)
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta http-equiv="X-UA-Compatible" content="IE=edge">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Document</title>
</head>
<body>
  <?php
  
echo "<A href=\"createtable.php\" >Skapa tabell </a> <BR>";
  echo 
"<A href=\"insertpost.php\" >Lägg till data </a> <BR>";
  echo 
"<A href=\"skrivut.php\" >Skriv ut tabell</a> <BR>";
  echo 
"<A href=\"uppdatera.php\" >Ändra tabell</a> <BR>";
  echo 
"<A href=\"tabort.php\" >Ta bort</a> <BR>";


  
?>
</body>
</html>