forked from root/threadr.lostcave.ddnss.de
36 lines
1.2 KiB
PHP
36 lines
1.2 KiB
PHP
|
<!DOCTYPE html>
|
||
|
<html>
|
||
|
<head>
|
||
|
<title>ThreadR Boards</title>
|
||
|
<link rel="stylesheet" type="text/css" href="%CONTENT_DIR%/style.css">
|
||
|
</head>
|
||
|
<body>
|
||
|
<div class="container">
|
||
|
<div class="item-1">
|
||
|
<?php
|
||
|
try {
|
||
|
$pdo = new PDO('mysql:host=localhost;dbname=web', 'webstuff', 'Schei// auf Pa$$w0rter!');
|
||
|
$error = false;
|
||
|
$error_message = "";
|
||
|
|
||
|
$statement = $pdo->prepare("SELECT name FROM boards");
|
||
|
$statement->execute();
|
||
|
|
||
|
echo "<ul class="topnav">"
|
||
|
foreach($statement->fetchAll() as $ROW) {
|
||
|
echo "
|
||
|
<li><a href='%CONTENT_DIR%/boards#$ROW[id]'>$ROW[name]</a></li>";
|
||
|
}
|
||
|
echo "</ul>"
|
||
|
}
|
||
|
catch(PDOException $Exception) {
|
||
|
$error_message = "Error: SQL error.\n" . $statement->queryString . "\n" . $statement->errorInfo()[2];
|
||
|
}
|
||
|
|
||
|
$pdo = null;
|
||
|
?>
|
||
|
</div>
|
||
|
</div>
|
||
|
</body>
|
||
|
</html>
|