我正在尝试创建一个基本的博客,并且我完全按照以前项目的语法插入到 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");
?>