先為刪除標籤加上a標籤
#<a href="newsave.php?action=del&id=<?php echo $row['id']?>">刪除</a>
用於取得get請求,然後在newsave .php頁面進行處理:
新增程式碼如下:
<?php elseif($action="del"){ $id=$_GET['id']; $sql="delete from news WHERE id=$id"; $result=$mysqli->query($sql); if($result){ echo "<script>alert('删除成功!');window.location.href='newlist.php'</script>"; }else{ echo "<script>alert('删除失败!');</script>"; } }
效果顯示: