PHP 개발 기업 웹사이트 튜토리얼: 뉴스 정보 삭제

delnews.php 파일로 이동하려면 삭제를 클릭하세요

이 파일의 코드를 살펴보겠습니다:

<?php
    //删除新闻资讯部分代码
    require_once('conn.php');
    $id = $_GET['id'];
    $sql = "delete from news where id='$id'";
    $res = mysql_query($sql);
    if($res){
        echo "<script>alert('删除成功');location.href='news.php';</script>";
    }else{
        echo "<script>alert('删除失败');location.href='news.php';</script>";
    }
?>

데이터베이스에 연결하고, 양식에서 가져온 매개변수 ID를 가져온 다음 삭제할 SQL 문을 작성하세요

SQL 문을 실행하여 성공적으로 삭제하고 점프하여 디스플레이 페이지에서 볼 수 있도록 디스플레이 페이지를 다시 게시하세요

지속적인 학습
||
<?php //删除新闻资讯部分代码 require_once('conn.php'); $id = $_GET['id']; $sql = "delete from news where id='$id'"; $res = mysql_query($sql); if($res){ echo "<script>alert('删除成功');location.href='news.php';</script>"; }else{ echo "<script>alert('删除失败');location.href='news.php';</script>"; } ?>
  • 코스 추천
  • 코스웨어 다운로드
현재 코스웨어를 다운로드할 수 없습니다. 현재 직원들이 정리하고 있습니다. 앞으로도 본 강좌에 많은 관심 부탁드립니다~