カテゴリ削除機能LOGIN

カテゴリ削除機能

#最初に、削除タグとすべての削除タグの両方にタグを追加します

<?php
<a href="typesave.php?action=del&id=<?php echo $row['id']?>">删除</a>
<a href="javascript:delall()">全部删除</a><a href="typeadd.php"> 添加类别</a>


# get リクエストを取得するために使用されます そして、それを typasave.php ページで処理します

次のコードを typesave.php ページに追加します:

elseif ($_GET["action"]=="del"){
    $id=$_GET['id'];
    $sql = "delete from type where id=$id";
    if ($mysqli->query($sql)) {
        echo "<script>alert('类别删除成功')</script>";
        echo "<script>window.location='typelist.php'</script>";
    }
}elseif ($_GET["action"]=="delall"){
    $arrid=$_GET["arrid"];
    $arr=rtrim($arrid,",");
    $sql="delete from type where id in ($arr)";
    $result=$mysqli->query($sql);
    if($result){
        echo "<script>alert('类别删除成功!')</script>";
        echo "<script>window.location.href='typelist.php'</script>";
    }

エフェクト表示:

gif5新文件 (7).gif


次のセクション
<?php echo "类别删除功能";
コースウェア