From 20e1401413022ccf77b202f0865b904484f1313a Mon Sep 17 00:00:00 2001 From: Jakob Date: Sun, 8 Mar 2020 17:15:05 +0100 Subject: [PATCH] =?UTF-8?q?=E2=80=9Ethreadr/board/submit.php=E2=80=9C=20?= =?UTF-8?q?=C3=A4ndern?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- threadr/board/submit.php | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/threadr/board/submit.php b/threadr/board/submit.php index a31af78..c43e244 100644 --- a/threadr/board/submit.php +++ b/threadr/board/submit.php @@ -6,10 +6,12 @@ $pdo = new PDO('mysql:host=localhost;dbname=web', 'webstuff', 'Schei// auf Pa$$w $error = false; $error_message = ""; if (!$error) { - $statement = $pdo->prepare('INSERT INTO posts (board_id, user_id, title, content,) VALUES (:bid,:uid,:title,:content)'); + $statement = $pdo->prepare("INSERT INTO posts (board_id, user_id, title, content,) VALUES (:bid,:uid,:title,:content)"); $result = $statement->execute(array('bid'=>$id, 'uid'=>$_SESSION[user_id], 'title'=>$_POST['title'], 'content'=>$_POST['content'])); - if (!$result) { - $error_message = "

Error: SQL error.

" . $statement->queryString . "
" . $statement->errorInfo()[2] . "
"; - } } +if (!$result) { + $error_message = "

Error: SQL error.

" . $statement->queryString . "
" . $statement->errorInfo()[2] . "
"; +} + +echo "
"; ?> \ No newline at end of file