From 0429359ca1287f07f1c06906b5eb1b6bbcfc0bf5 Mon Sep 17 00:00:00 2001 From: Jakob Date: Sun, 8 Mar 2020 17:26:58 +0100 Subject: [PATCH] pls work --- threadr/board/submit.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/threadr/board/submit.php b/threadr/board/submit.php index a035d16..18c3925 100644 --- a/threadr/board/submit.php +++ b/threadr/board/submit.php @@ -6,8 +6,8 @@ $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)"); - $result = $statement->execute(array('bid'=>$id, 'uid'=>$user_id, 'title'=>$title, 'content'=>$content)); + $statement = $pdo->prepare("INSERT INTO posts (board_id, user_id, content, title) VALUES (:bid, :uid, :content, :title)"); + $result = $statement->execute(array('bid'=>$id, 'uid'=>$user_id, 'content'=>$content, 'title'=>$title)); } if (!$result) { $error_message = "

Error: SQL error.

" . $statement->queryString . "
" . $statement->errorInfo()[2] . "
";