diff --git a/threadr/board/submit.php b/threadr/board/submit.php index 582f78f..a31af78 100644 --- a/threadr/board/submit.php +++ b/threadr/board/submit.php @@ -7,7 +7,7 @@ $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'=>$_SESSION[user_id], 'title'=>$_POST[title], 'content'=>$_POST[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] . "
"; }