Please fill out both the title field and content box.
";
}
else {
  $error = false;
  $error_message = "";
  if (!$error) {
    $statement = $pdo->prepare("INSERT INTO posts (board_id, user_id, content, title, reply_to) VALUES (:bid, :uid, :content, :title, :replyto)");
    $result = $statement->execute(array('bid'=>$id, 'uid'=>$_SESSION[user_id], 'content'=>$_POST['content'], 'title'=>$_POST['title'], 'replyto'=>$reply_to));
  }
  if (!$result) {
      $error_message = "Error: SQL error.
" . $statement->queryString . "
" . $statement->errorInfo()[2] . "
";
  }
  echo "";
}
?>