display name of the user instead of id

master
Jakob 2020-03-08 15:29:36 +01:00
parent d72da5ffef
commit c7408301a1
1 changed files with 13 additions and 3 deletions

View File

@ -3,15 +3,25 @@ $pdo = new PDO('mysql:host=localhost;dbname=web', 'webstuff', 'Schei// auf Pa$$w
$error = false;
$error_message = "";
if (!$error) {
$statement = $pdo->prepare("SELECT * FROM posts WHERE board_id=:id ORDER BY post_time asc");
$statement->execute(array("id"=>$id));
$statement = $pdo->prepare("SELECT * FROM posts WHERE board_id=:bid ORDER BY post_time asc");
$statement->execute(array("bid"=>$id));
foreach($statement->fetchAll() as $ROW) {
$error = false;
$error_message = "";
if (!$error) {
$statement = $pdo->prepare("SELECT * FROM users WHERE id=:uid");
$statement->execute(array("uid"=>$ROW[user_id]));
$user = $statement->fetch();
}
if (!$result) {
$error_message = "Error: SQL error.\n" . $statement->queryString . "\n" . $statement->errorInfo()[2];
}
echo "<section>";
echo "<h1>$ROW[id]</h1>";
echo "<article>";
echo "<header>";
echo "<div>";
echo "<p class='beige'>$ROW[user_id] <time datetime='$ROW[post_time]'>$ROW[post_time]</time></p>";
echo "<p class='beige'>$user['name'] <time datetime='$ROW[post_time]'>$ROW[post_time]</time></p>";
echo "</div>";
echo "</header>";
echo "<div class='postcontent'>";