학생 정보를 삭제하는 PHP 개발 학생 관리 시스템
Create
index.php 페이지에 삭제 링크를 만들었습니다
<a href='javascript:void(0);' onclick='doDel({$row['id']})'> ;삭제 </a> ='action.php?action=del&id='+id;
}</script>
정보 삭제
데이터베이스 연결 및 해당 ID 삭제 삭제 페이지에서 전달된 정보
코드는 다음과 같습니다
<?php header("content-type:text/html;charset=utf8"); $id = $_GET['id']; $conn=mysqli_connect("localhost","root","root","study"); mysqli_set_charset($conn,"utf8"); $sql = "delete from stu where id='$id'"; $rw = mysqli_query($conn,$sql); if ($rw > 0){ echo "<script>alter('删除成功');</script>"; }else{ echo "<script>alter('删除失败');</script>"; } header('Location: index.php'); ?>
이렇게 하면 이전 코드를 모두 단순화하고 통합할 수 있습니다
.