PHP는 간단한 뉴스 릴리스 시스템과 뉴스 목록 페이지 삭제 기능 모듈을 개발합니다.

섹션 소개 이 섹션에서는 뉴스 목록 페이지에서 뉴스를 삭제하는 방법과 해당 뉴스의 기록을 데이터베이스에서 삭제하는 방법을 소개합니다.

데이터베이스를 운영하지 않고는 여전히 할 수 없습니다. 여기서는 삭제를 사용해야 합니다. 데이터 테이블에서 데이터를 삭제하세요

아이디어:

데이터 경로의 새 테이블에서 id 필드를 삭제하여 뉴스를 삭제하세요. table

1608.png

SQL 문은 다음과 같습니다:

<?php
$sql = "delete from new where id = '$id'";
?>

삭제 기능을 구현하는 전체 delete.php 파일:

<?php
 header("content-type:text/html;charset=utf8");
 $link = mysqli_connect('localhost','root','root','test');
       mysqli_set_charset($link, "utf8");
       
 if (!$link) {
   die("连接失败:".mysqli_connect_error());
 }
 $id = $_GET['id'];
 $sql = "delete from new where id = '$id'";
 //echo $sql;
 $rel = mysqli_query($link,$sql);
 if($rel){
   echo "<script>alert('删除成功');window.location.href='list.php'</script>";
 }else{
   echo "<script>alert('删除失败');window.location.href='list.php'</script>";
 }
?>


지속적인 학습
||
<?php header("content-type:text/html;charset=utf8"); $link = mysqli_connect('localhost','root','root','test'); mysqli_set_charset($link, "utf8"); if (!$link) { die("连接失败:".mysqli_connect_error()); } $id = $_GET['id']; $sql = "delete from new where id = '$id'"; //echo $sql; $rel = mysqli_query($link,$sql); if($rel){ echo "<script>alert('删除成功');window.location.href='list.php'</script>"; }else{ echo "<script>alert('删除失败');window.location.href='list.php'</script>"; } ?>
  • 코스 추천
  • 코스웨어 다운로드
현재 코스웨어를 다운로드할 수 없습니다. 현재 직원들이 정리하고 있습니다. 앞으로도 본 강좌에 많은 관심 부탁드립니다~