„threadr/board/submit.php“ ändern
parent
f6e6d40d7e
commit
1a9d09589d
|
@ -7,7 +7,7 @@ $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'=>$_SESSION[user_id], 'title'=>$title, 'content'=>$content));
|
$result = $statement->execute(array('bid'=>$id, 'uid'=>$user_id, 'title'=>$title, 'content'=>$content));
|
||||||
}
|
}
|
||||||
if (!$result) {
|
if (!$result) {
|
||||||
$error_message = "<p>Error: SQL error.</p><pre>" . $statement->queryString . "</pre><pre>" . $statement->errorInfo()[2] . "</pre>";
|
$error_message = "<p>Error: SQL error.</p><pre>" . $statement->queryString . "</pre><pre>" . $statement->errorInfo()[2] . "</pre>";
|
||||||
|
|
Loading…
Reference in New Issue