0

我正在创建一个 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');
}

?>

我的问题是。

我的添加文章按钮只刷新页面

不会显示所有字段都需要的警告,也不会像我要求的那样向我的数据库添加任何内容。但刷新页面。

请问有人能告诉我哪里出错了吗?

谢谢你。

4

1 回答 1

1

你有name="Content"我认为你想要它name="content"

于 2013-07-01T21:50:14.763 回答