有没有办法使用按钮和 php 删除我的数据库行

我用我的 PHP 和数据库创建了一个表,并在我的第一列中每个元素的右侧添加了一个删除按钮,我希望这个按钮删除我数据库中的行,但我不知道如何将我的按钮链接到一个 PHP 动作


<table border="2" class="table table-striped">

        <thead class="thead-dark">

        <tr>

        <th scope="col"><h6>Nom de l'Etape</h6></th>

        <th scope="col"><h6>Description de l'Etape </h6> </th>

        </tr>

      </thead>



      <?php

      $req='SELECT * FROM Etape';

      $resultat=$dbh->query($req);


      while ($ligne=$resultat->fetch()) {

        echo "<tr> <td>". $ligne[0]."<button type=\"button\" onclick=\"alert('Hello world!')\">delete</button></td><td>".$ligne[1]."</td>  </tr>";

      }


       ?>

    </table>


慕丝7291255
浏览 176回答 1
1回答
打开App,查看更多内容
随时随地看视频慕课网APP