Webbserverprogrammering 1

Show sourcecode

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

webbsrvprg/exercises/sql-intro/sql-intro0/

createtable.php
deletepost.php
deletetable.php
insertdefaultposts.php
insertpost.php
selectposts.php
sql-intro0-index.php
updatepost.php

sql-intro0-index.php

28 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\" >Createtable </a> <BR>";
  echo 
"<A href=\"deletepost.php\" >Deletepost </a> <BR>";
  echo 
"<A href=\"deletetable.php\" >Deletetable </a> <BR>";
  echo 
"<A href=\"insertdefaultposts.php\" >Insertdefaultposts </a> <BR>";
  echo 
"<A href=\"insertpost.php\" >Insertpost </a> <BR>";
  echo 
"<A href=\"selectposts.php\" >Selectpost </a> <BR>";
  echo 
"<A href=\"updatepost.php\" >Updatepost </a> <BR>";




  


  
  
?>
</body>
</html>