diff --git a/threadr/board/submit.php b/threadr/board/submit.php index 592d890..a035d16 100644 --- a/threadr/board/submit.php +++ b/threadr/board/submit.php @@ -6,7 +6,7 @@ $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'=>$user_id, 'title'=>$title, 'content'=>$content)); } if (!$result) {