我正在尝试使用PHP做文章生成器,但无法删除它们

时间:2019-07-04 21:27:04

标签: php sql generator article

http://image.noelshack.com/fichiers/2019/27/4/1562273901-image.png

我目前正在尝试使用PHP生成文章生成器,但它有点奏效,但是我无法删除(“ SUPPRIMER”链接)我的文章,我也不知道为什么,您可以检查我的代码

我之前已经在另一个文件夹中尝试过该代码,它可以正常工作,但在这里不,为什么?不是文件位置问题,因为我正在同一文件(index.php)中做所有事情

也许我的代码块不在代码的合适位置? idk

<?php $articles = $bdd->query('SELECT * FROM articles ORDER BY date_time_publication DESC'); ?>

    <ul>
          <?php 

          while($a = $articles->fetch()) 
          {
          echo '<li><a href="articles.php?id=' . $a['id']. '">' . $a['titre'] . '</a> | <a href="index.php?edit=' . $a['id'] . '">Modifier </a> | <a href= "index.php?suppression=true&id=' . $a['id'] . '">Supprimer</a></li>';
          }

    if(isset($_GET['suppression']) && $_GET['suppression'] == true)
    {

        $suppr_id = htmlspecialchars($_GET['id']);
        $suppr = $bdd->prepare('DELETE FROM articles WHERE id = :id');

        $suppr->bindParam(':id', $suppr_id);
        $suppr->execute();
        header('location:index.php');
        exit();
    }
        ?>
    </ul>

这只是整页代码的一个块,如果您想要完整的代码,这里是https://sharemycode.fr/test

0 个答案:

没有答案