0

我正在尝试创建一个基本的博客,并且我完全按照以前项目的语法插入到 mysql 数据库中,但这不会添加。我回显了这些值以查看它是否正确传递它,但是当我检查我的数据库时,没有添加任何内容。任何人都可以通过我的代码看到有什么问题吗?提前感谢任何回答的人,无论您是否能够提供帮助。

编辑:我还检查了我的数据库,它工作正常并且命名为,connect.php 也适用于我的登录,所以由于信息相同,它应该在这里工作。

edit2:数据库表如下

postid int(10) auto_increment 

title    text

author   text

date     date

content  text

tag1     text

tag2     text

<?php

// Make sure the user is logged in
session_name('blog');
session_start();
if (empty($_SESSION['username']))
{
    header("Location: loginhome.php");
    exit;
}

// Connect to the database and add a message
include("connect.php"); 

$one = $_POST['title'];
$two = $_POST['author'];
$three = $_POST['content'];
$four = $_POST['cat1'];
$five = $_POST['cat2'];
echo $two;


$add_message_query = $db->prepare("
    INSERT INTO `blogposts`
        (`title`, `author`, `date`, `content`, `tag1`, `tag2`)
    VALUES
        (:title, :author, CURRENT_TIMESTAMP, :content, :cat1, :cat2)
    ");

$add_message_query->execute(
    array(
    ':author' => $one,
    ':title' => $two,
    ':content' => $three,
    ':cat1' => $four,
    ':cat2' => $five
    )
);
//go to home to show new post
//header("Location: home.php");
?>   
4

1 回答 1

0

$db->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION);用于更好的错误处理。

http://www.php.net/manual/en/pdo.setattribute.php

于 2013-05-05T01:51:05.293 回答