43 lines
647 B
PHP
43 lines
647 B
PHP
|
<?php
|
||
|
include("db_pdo.php")
|
||
|
$db = new myPDO();
|
||
|
|
||
|
?>
|
||
|
|
||
|
<!doctype html>
|
||
|
<html>
|
||
|
|
||
|
|
||
|
<head>
|
||
|
<meta charset="UTF-8">
|
||
|
<title></title>
|
||
|
</head>
|
||
|
|
||
|
|
||
|
<body>
|
||
|
<h1>Mine CD-er</h1>
|
||
|
<table>
|
||
|
<tr>
|
||
|
<th>Navn på film</th>
|
||
|
<th>Navn (engelsk)</th>
|
||
|
<th>Skuespiller</th>
|
||
|
<th>Skuespiller</th>
|
||
|
<th>År</th>
|
||
|
<th>Nr</th>
|
||
|
</tr>
|
||
|
|
||
|
<tr>
|
||
|
<td>Navn på film</td>
|
||
|
<td>Navn (engelsk)</td>
|
||
|
<td>Skuespiller</td>
|
||
|
<td>Skuespiller</td>
|
||
|
<td>År</td>
|
||
|
<td>Nr</td>
|
||
|
</tr>
|
||
|
|
||
|
|
||
|
|
||
|
</body>
|
||
|
|
||
|
|
||
|
</html>
|