Show sourcecode
The following files exists in this folder. Click to view.
webbserverprogrammering/exercises/mysqlintro/kompisar/
createtable.php
dbconnection.php
deletepost.php
deletetable.php
index.html
insertdefaultposts.php
insertpost.php
selectposts.php
updatepost.php
index.html
26 lines ASCII Windows (CRLF)
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>MySQLintro</title>
<style type="text/css">
div{
margin: auto;
width: 350px;
}
</style>
</head>
<body>
</body>
<div>
<h1>Kompisar MySQL</h1>
<a href="createtable.php">createtable</a><br>
<a href="insertdefaultposts.php">insertdefaultposts</a><br>
<a href="insertpost.php">insert</a><br>
<a href="selectposts.php">selectposts</a><br>
<a href="updatepost.php">updatepost</a><br>
<a href="deletepost.php">deletepost</a><br>
<a href="deletetable.php">deletetable</a><br>
<a href="../">Tillbaka</a><br>
</div>
</html>