1

我正在尝试将带有 $_POST 的简单 html 表单中的数据插入到带有 PHP 和 PDO 的数据库中。我没有收到任何错误,数据库中没有任何内容。如果我在代码中手动输入值,它可以工作,但在输入 html 表单时没有任何反应。在某些时候,我输入了“数组”。

更新: 我得到的错误是:致命错误:未捕获的异常 'PDOException' 带有消息'SQLSTATE [23000]:完整性约束违规:1048 列'标题'不能为空' in ...

为什么列标题为空?

数据库只是一个包含 4 个字段(id、title、message 和 time/timestamp 字段) 的表。id 字段是主要的 AI,timestamp 字段会自动获取时间。

这是 connect.inc.php 文件:

<?php
class DB extends PDO
{
    public function __construct($dbname = "blogdata")
    {
        try {
            parent::__construct("mysql:host=localhost;dbname=$dbname;charset=utf8",
                                "root", "");
        } catch (Exception $e) {
            var_dump($e);
        }
    }
}

?>

这是 post.php 文件:

<?php 

require 'connect.inc.php';

$db = new DB('blogdata');

$stmt = $db->prepare("INSERT INTO blogposts (title, message, time) VALUES (:title, :message, :time)");

$stmt->bindParam(':title', $_POST['title']);
$stmt->bindParam(':message', $_POST['message']);
$stmt->bindParam(':time', $time);

$title = $_POST['title'];
$message = $_POST['message'];

$stmt->execute();

?>


<!DOCTYPE html>

<html>
<head>
<title>Create blog post</title>
<meta charset="utf-8" />

</head>

<body>

<!--- Add blog post ---> 

<div class="add_form">
    <form id="add_post" method="post" action="index.php" enctype="text/plain">
        <fieldset>
            <legend>Create post</legend>
            <label for="post_title">Title:
                <input id="title" type="text" name="title" value="<?php if (isset($title)) { echo htmlentities ($title); } ?>" >
            </label>
            <label for="message">Message:
                <textarea id="message" name="message" rows="20" cols="30" maxlength="50" value="<?php if (isset($message)) { echo htmlentities ($message); } ?>" ></textarea>
            </label>                                        
        </fieldset>
        <input id="send" type="submit" value="Send">
    </form>
</div>


</body>

</html>

回答

您需要将所有内容都包装起来并检查 $_POST 是否不为空。问题还在于表单中的 action="index.php" 。它需要设置为 post.php。

这是 post.php 中的正确代码:

<?php 

if (!empty($_POST)) {

  require 'connect.inc.php';

  $db = new DB('blogdata');

  $stmt = $db->prepare("INSERT INTO blogposts (title, message) VALUES (:title, :message)");
  $stmt->bindParam(':title', $_POST['title']);
  $stmt->bindParam(':message', $_POST['message']);

  $title = $_POST['title'];
  $message = $_POST['message'];

  $stmt->execute();

  header ('Location: index.php');
  exit;
}
?>

<!DOCTYPE html>

<html>
<head>
<title>Create blog post</title>
<meta charset="utf-8" />
<link rel="stylesheet" href="reset.css" />
<link rel="stylesheet" href="style.css" />

</head>

<body>

<!--- Add blog post ---> 

<div class="add_form">
    <form id="add_post" method="post" action="post.php">
        <fieldset>
            <legend>Create post</legend>
            <label for="post_title">Title:
                <input id="title" type="text" name="title" value="<?php if (isset($title)) { echo htmlentities ($title); } ?>" >
            </label>
            <label for="message">Message:
                <textarea id="message" name="message" rows="20" cols="30" maxlength="50" value="<?php if (isset($message)) { echo htmlentities ($message); } ?>" ></textarea>
            </label>                                        
        </fieldset>
        <input id="send" type="submit" value="Send">
    </form>
</div>


</body>

</html>
4

2 回答 2

1

这是正确的connect.inc.php 文件:

<?php
class DB extends PDO
{
    public function __construct($dbname = "blogdata")
    {
        $opt = array(PDO::ATTR_ERRMODE => PDO::ERRMODE_EXCEPTION);
        $dsn = "mysql:host=localhost;dbname=$dbname;charset=utf8";
        parent::__construct($dsn, "root", "", $opt);
    }
}

不知道是否会导致错误,但是

这是post.php文件:
<formid="add_post" method="post" action=" index.php "

无论如何,问题的真正原因与此类似。某处的一些愚蠢的错字

于 2013-10-09T13:46:53.003 回答
1

您最后的评论:

@Corum 嗨,我在表单中调用 index.php,因为 index.php 正在显示所有帖子,并且在发送表单后,用户应该被引导到 index.php 并能够看到结果......我真的可以'似乎没有解决这个问题:(

如果你用<form action="index.php">你的表单数据调用 index.php 将永远不会被处理。

您必须post.php改为在重定向到 index.php 之后调用。

更正的代码(替换文件中的顶部 PHP 块post.php):

<?php 
if (!empty($_POST) {
  // Only process if form is submitted (when page is launched, it use GET method)
  require 'connect.inc.php';

  $db = new DB('blogdata');

  $stmt = $db->prepare("INSERT INTO blogposts (title, message, time) VALUES (:title, :message, :time)");

  $stmt->bindParam(':title', $_POST['title']);
  $stmt->bindParam(':message', $_POST['message']);
  $stmt->bindParam(':time', $time);

  $title = $_POST['title'];
  $message = $_POST['message'];

  $stmt->execute();

  // Redirect to index.php
  header('Location : index.php');
  exit;
}
?>

并将您的 html 表单更改为:<form action="post.php" ...>

于 2013-10-09T16:44:53.733 回答