sqlphp会话删除系统

sauutmhj  于 2021-06-18  发布在  Mysql
关注(0)|答案(1)|浏览(227)

我制作了一个从sql检索数据的php表单。选择well和edit update well,但是如何单击以删除此sql数据。我试了很多次,但可能出了问题。请帮我处理这个代码
https://i.stack.imgur.com/u6t3k.jpg

<?php 
$sql = "SELECT * from tblclasses"; 
$query = $dbh->prepare($sql); 
$query->execute(); 
$results=$query->fetchAll(PDO::FETCH_OBJ); 
$cnt=1; 
if($query->rowCount() > 0) { 
   foreach($results as $result) { 
       ?> 
       <tr> <td><?php echo htmlentities($cnt);?></td> 
            <td><?php echo htmlentities($result->ClassName);?></td> 
            <td><?php echo htmlentities($result->CreationDate);?></td> 
            <td> <a href="edit-info.php?classid=<?php echo htmlentities($result->id);?>"><i class="fa fa-edit" title="Edit Record"></i> Edit</a> </td> 
       </tr> 
       <?php 
       $cnt=$cnt+1;
   }
} 
?>
w46czmvw

w46czmvw1#

在表中添加另一列,并带有删除链接:

<td> 
    <a href="delete-info.php?classid=<?php echo htmlentities($result->id);?>">
        <i class="fa fa-remove" title="Delete Record"></i> Delete
    </a> 
</td>

创建 delete-info.php . 检查 GET 变量 classid ,然后做你的 DELETE 查询!

相关问题