delete.php页面没有删除DB内容

时间:2013-07-30 13:09:39

标签: php mysql content-management-system

我现在已经在我网站的管理员工作了一段时间。

我已经成功创建了一个添加页面,用于在mysql中将项目添加到我的mobi数据库中。

但是当添加一个delete.php页面时,它不能很好地工作。

页面在下拉菜单中加载并列出数据库中的所有文章,但是当我选择不再需要的文章时,它会返回到页面上编码的索引,但检查我的网站它不会删除文章。

我的DELETE.PHP页面是:

<?php

session_start();

include_once('../include/connection.php');
include_once('../include/article.php');

$article = new storearticle;

if (isset($_SESSION['logged_in'])) {
   if (isset($_GET['title'])) {
         $id = $_GET['title'];
         $query = $pdo->prepare('DELETE FROM mobi WHERE promo_title = ?');
         $query->bindValue(1, $title);
         $query->execute();

         header('Location: index.php');
   }
   $articles = $article->fetch_all();
?>        
<html>
   <head>
      <title>Delete Article</title>
      <link rel="stylesheet" href="../other.css" />
   </head>

   <body>
      <div class="container">
         <a href="index.php" id="logo"><b>&larr; Back</b></a>

        <br />
        <div align="center">
            <h4>Select an article to delete:</h4>    
            <form action="delete.php" method="get">
               <select onchange="this.form.submit();" name="title">
               <?php foreach ($articles as $article){ ?>
                  <option value="<?php echo $article['promo_title']; ?>"><?php echo $article['promo_title']; ?></option>
               <?php } ?>
              </select>
            </form>    
         </div>
      </div>
   </body>
</html>
<?php
} else {
     header('Location: index.php');    
}
?>

有人能看到我出错的地方吗?

如果您需要更多信息,请告知我们。

1 个答案:

答案 0 :(得分:4)

您正在通过

分配ID
$id = $_GET['title'];

然后你试图通过$title获得它。我认为这就是问题:)