prepare("INSERT INTO forum_posts (thread_id, author, body) VALUES (:thread_id, :author, :body)"); $stmt->execute([ ':thread_id' => $id, ':author' => $author, ':body' => $body, ]); header('Location: thread.php?id=' . $id . '&posted=1'); exit; } } $stmt = $pdo->prepare("SELECT * FROM forum_threads WHERE id = :id"); $stmt->execute([':id' => $id]); $thread = $stmt->fetch(); if (!$thread) { $pageTitle = 'Thread Not Found'; } $posts = []; if ($thread) { $stmt = $pdo->prepare("SELECT * FROM forum_posts WHERE thread_id = :id ORDER BY created_at DESC"); $stmt->execute([':id' => $id]); $posts = $stmt->fetchAll(); } include __DIR__ . '/includes/header.php'; ?>

Thread not found

This thread may have been removed or never existed.

Back to forums

Started by ยท

Start new thread

Opening post

Thread focus

  • Game:
  • Tag:
  • Replies:

Replies

replies

No replies yet. Be the first to respond.