Webbserverprogrammering 1

Show sourcecode

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

webbsrvprg/exercises/sql-intro/sql-intro3/

create-car.php
createtable.php
insertgarage-owner.php
sql-intro3-index.php
sql-intro3a.php
sql-intro3b.php
sql-intro3c.php
sql-intro3d.php

sql-intro3-index.php

23 lines ASCII 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=\"insertgarage-owner.php\" >Skapa garage och owner</a> <BR>";
  echo 
"<A href=\"create-car.php\" >Skapa bil</a> <BR>";
  echo 
"<A href=\"sql-intro3a.php\" >Uppgift a</a> <BR>";
  echo 
"<A href=\"sql-intro3b.php\" >Uppgift b</a> <BR>";
  echo 
"<A href=\"sql-intro3c.php\" >Uppgift c</a> <BR>";
  echo 
"<A href=\"sql-intro3d.php\" >Uppgift d</a> <BR>";


  
?>
  
</body>
</html>