master
Jakob 2020-03-08 17:25:30 +01:00
parent bf93db3d54
commit 133afd0545
1 changed files with 1 additions and 1 deletions

View File

@ -6,7 +6,7 @@ $pdo = new PDO('mysql:host=localhost;dbname=web', 'webstuff', 'Schei// auf Pa$$w
$error = false; $error = false;
$error_message = ""; $error_message = "";
if (!$error) { 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)); $result = $statement->execute(array('bid'=>$id, 'uid'=>$user_id, 'title'=>$title, 'content'=>$content));
} }
if (!$result) { if (!$result) {