PHP 개발 게시판 튜토리얼...LOGIN

PHP 개발 게시판 튜토리얼: 게시판 삭제 메시지 PHP 페이지

메시지를 삭제하면 실제로 데이터베이스의 데이터가 삭제됩니다.

링크를 삭제하기 전에 각 데이터 조각의 ID를 전달했습니다

<td><a href="ressage_delete.php?id=<? php echo $row['id']?>" >Delete</a> </td>

PHP 페이지에서 ID를 받은 후 관련 ID를 삭제하면 삭제 기능을 얻을 수 있습니다.

3.jpg

코드는 다음과 같습니다

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