diff --git a/threadr/boards/index.php b/threadr/boards/index.php index f945385..057a42b 100644 --- a/threadr/boards/index.php +++ b/threadr/boards/index.php @@ -25,6 +25,7 @@ $navbar="boards"; $error = false; $error_message = ""; if (!$error) { + echo "

Public Boards:

"; $statement = $pdo->prepare("SELECT * FROM boards WHERE private='0' ORDER BY id asc"); $statement->execute(); foreach($statement->fetchAll() as $ROW) { @@ -39,6 +40,7 @@ $navbar="boards"; $error = false; $error_message = ""; if (!$error) { + echo "

Private Boards:

"; $statement = $pdo->prepare("SELECT * FROM boards WHERE private='1' ORDER BY id asc"); $statement->execute(); foreach($statement->fetchAll() as $ROW) {