PHP에서 개발한 게시판 삭...LOGIN

PHP에서 개발한 게시판 삭제

메시지 삭제


Tips: 메시지 삭제에는 승인된 관리가 필요하므로 메시지 삭제 권한은 관리자에게만 부여되는 것은 아니지만, 이 장에서는 삭제 방법을 알려드리겠습니다. 메시지를 삭제하면 권한이 관련되지 않습니다


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

링크를 삭제하기 전에 각 메시지의 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()); ?>
코스웨어