PHP 개발 보도 자료 시스...LOGIN

PHP 개발 보도 자료 시스템 뉴스 삭제 페이지

new_del.php 파일을 생성합니다


뉴스 목록 페이지에 올라오는 형식으로 각 데이터의 ID를 전달했습니다

<a href="new_del.php?id=<? php echo $row['id']?>">삭제</a>

페이지를 수정할 때만 이 ID를 받고 데이터베이스의 데이터를 삭제하면 됩니다

2.jpg

코드 는 다음과 같습니다

<?php
header("content-type:text/html;charset=utf-8");
$id=$_GET['id'];
$conn=mysqli_connect("localhost","root","root","News");
if($conn){
    $sql="delete from new where id ='$id' ";
    $que=mysqli_query($conn,$sql);
    if($que){
        echo"<script>alert('删除成功,返回首页');location.href='new_list.php';</script>";
    }else{
        echo "<script>alert('删除失败');location='" . $_SERVER['HTTP_REFERER'] . "'</script>";
        exit;
    }
}die("数据库连接失败" .mysqli_connect_error());
?>

이제 삭제 기능이 완성됩니다


이전 장을 결합하여 가장 간단한 보도 자료 시스템이 완성되었습니다



<?php header("content-type:text/html;charset=utf-8"); $conn=mysqli_connect("localhost","root","root","News"); $id=$_GET['id']; if($conn){ $sql="delete from new where id ='$id' "; $que=mysqli_query($conn,$sql); if($que){ echo"<script>alert('删除成功,返回首页');location.href='new_list.php';</script>"; }else{ echo "<script>alert('删除失败');location='" . $_SERVER['HTTP_REFERER'] . "'</script>"; exit; } }die("数据库连接失败" .mysqli_connect_error()); ?>
코스웨어