我正在创建一个CMS,我正在添加一个添加页面。
我使用以下代码作为我的add.php:
<?php
session_start();
include_once('../include/connection.php');
if (isset($_SESSION['logged_in'])){
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');
}
}
?>
<html>
<head>
<title>testing</title>
<link rel="stylesheet" href="../style.css" />
</head>
<body>
<div class="container">
<a href="index.php" id="logo">CMS</a>
<br />
<h4>Add Article</h4>
<?php if (isset($error)) { ?>
<small style="color:#aa0000;"><?php echo $error; ?></small><br /><br />
<?php } ?>
<form action="add.php" method="post" autocomplete="off">
<input type="text" name="title" placeholder="Title" /><br /><br />
<textarea rows="15" cols="50" placeholder="content" name="Content"></textarea><br /><br />
<input type="submit" value="Add Article" />
</form>
</div>
</body>
</html>
<?php
}else{
header('location: index.php');
}
?>
我的问题是。
我的ADD ARTICLE按钮仅刷新页面
它没有显示一个警告,表明所有字段都是必需的,不会向我的数据库添加任何内容,就像我要求的那样。但刷新页面。
请问有人可以告诉我哪里出错了吗? 谢谢你。答案 0 :(得分:1)
您有name="Content"
我认为您希望它是name="content"
。