这是我的代码中的任何错误吗?
我尝试插入文章,但未插入bieng。
我的完整代码在这里:pastebin.com/Tc0RHLSJ
如果有人可以检查我的代码并告诉我我的错误(我正在学习),那将是很好的选择
php代码:
<?php
session_start();
include_once('../includes/connection.php');
if (isset($_SESSION['logged_in'])){
//display add page
if (isset($_POST['title'], $_POST['content'])){
$title = $_POST['title'];
$content = $_POST['content'];
if (empty($title) or empty($content)) {
$error = 'All fields are required';
}else {
$query = $pdo->prepare('INSERT INTO articles (article_title, article_content, article_timestamp) VALUES (?, ?, ?)');
$query->bindValue(1, $title);
$query->bindValue(2, $content);
$query->bindValue(3, time());
$query->execute();
header('Location: index.php');
exit();
}
}
?>