forked from root/threadr.lostcave.ddnss.de
55 lines
1.9 KiB
PHP
55 lines
1.9 KiB
PHP
<?php
|
|
//todo: fix automatic log out when opening "Boards"
|
|
session_start();
|
|
%PLEAZE_NO_CACHE%
|
|
%NO_CHEAP_SESSION_STEALING%
|
|
$navbar="boards";
|
|
?>
|
|
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>ThreadR - Boards</title>
|
|
<link rel="stylesheet" type="text/css" href="%CONTENT_DIR%/style.css">
|
|
<link rel="icon" type="image/png" href="%CONTENT_DIR%/img/favicon-32x32.png" sizes="32x32" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
</head>
|
|
<body>
|
|
%NAVBAR%
|
|
<div class="container">
|
|
<div class="item-1">
|
|
<h1><center>ThreadR Boards</center></h1>
|
|
</div>
|
|
<div class="item-2">
|
|
<ul class="list">
|
|
<?php
|
|
$pdo = new PDO('mysql:host=localhost;dbname=web', 'webstuff', 'Schei// auf Pa$$w0rter!');
|
|
$error = false;
|
|
$error_message = "";
|
|
echo "<p>Public boards:</p>"
|
|
if (!$error) {
|
|
$statement = $pdo->prepare("SELECT * FROM boards ORDER BY id asc");
|
|
$statement->execute();
|
|
foreach($statement->fetchAll() as $ROW) {
|
|
echo "<li><a href='%CONTENT_DIR%/boards/thread.php?id=$ROW[id]'>$ROW[name]</a></li>";
|
|
}
|
|
}
|
|
if (!$result) {
|
|
$error_message = "Error: SQL error.\n" . $statement->queryString . "\n" . $statement->errorInfo()[2];
|
|
}
|
|
if ($login) {
|
|
echo "<p>Private boards:</p>"
|
|
if (!$error) {
|
|
$statement = $pdo->prepare("SELECT * FROM boards WHERE public='0' ORDER BY id asc");
|
|
$statement->execute();
|
|
foreach($statement->fetchAll() as $ROW) {
|
|
echo "<li><a href='%CONTENT_DIR%/boards/thread.php?id=$ROW[id]'>$ROW[name]</a></li>";
|
|
}
|
|
}
|
|
}
|
|
?>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|