„threadr/board/submit.php“ ändern

master
Jakob 2020-03-08 17:23:52 +01:00
parent f6e6d40d7e
commit 1a9d09589d
1 changed files with 1 additions and 1 deletions

View File

@ -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'=>$title, 'content'=>$content));
$result = $statement->execute(array('bid'=>$id, 'uid'=>$user_id, 'title'=>$title, 'content'=>$content));
}
if (!$result) {
$error_message = "<p>Error: SQL error.</p><pre>" . $statement->queryString . "</pre><pre>" . $statement->errorInfo()[2] . "</pre>";