为了账号安全,请及时绑定邮箱和手机立即绑定

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

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

PHP
慕丝7291255 2021-06-11 14:11:09
我用我的 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>
查看完整描述

1 回答

  • 1 回答
  • 0 关注
  • 175 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信