submit posts
parent
4d87cfa89b
commit
c3261c820c
|
@ -1,4 +1,15 @@
|
||||||
<?php
|
<?php
|
||||||
%REQUIRE_LOGIN%
|
%REQUIRE_LOGIN%
|
||||||
/*submit.php*/
|
|
||||||
|
$pdo = new PDO('mysql:host=localhost;dbname=web', 'webstuff', 'Schei// auf Pa$$w0rter!')
|
||||||
|
|
||||||
|
$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]));
|
||||||
|
if (!$result) {
|
||||||
|
$error_message = "<p>Error: SQL error.</p><pre>" . $statement->queryString . "</pre><pre>" . $statement->errorInfo()[2] . "</pre>";
|
||||||
|
}
|
||||||
|
}
|
||||||
?>
|
?>
|
Loading…
Reference in New Issue