-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdelete.php
58 lines (50 loc) · 2.68 KB
/
delete.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
<?php
include('connection.php');
$id = $_GET['id'];
$query = "SELECT * FROM tbl_student WHERE id = $id LIMIT 1";
$result = mysqli_query($connection, $query);
$row = mysqli_fetch_array($result);
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Hapus Siswa</title>
<!-- CSS Here -->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-T3c6CoIi6uLrA9TneNEoa7RxnatzjcDSCmG1MXxSR1GAsXEV/Dwwykc2MPK8M2HN" crossorigin="anonymous">
</head>
<body>
<div class="container" style="margin-top: 80px">
<div class="row">
<div class="col-md-8 offset-md-2">
<div class="card">
<div class="card-header">Apakah anda yakin ingin hapus data?</div>
<div class="card-body">
<form action="destroy.php" method="get">
<div class="mb-3">
<label for="nisn" class="form-label">NISN</label>
<input type="text" name="nisn" id="nisn" value="<?php echo $row['nisn'] ?>" class="form-control" disabled>
<input type="hidden" name="id" value="<?php echo $row['id'] ?>">
</div>
<div class="mb-3">
<label for="name" class="form-label">Nama Lengkap</label>
<input type="text" name="name" id="name" value="<?php echo $row['name'] ?>" class="form-control" disabled>
</div>
<div class="mb-3">
<label for="address" class="form-label">Alamat Lengkap</label>
<input name="address" id="address" value="<?php echo $row['address'] ?>" class="form-control" disabled>
</div>
<button type="submit" class="btn btn-danger">Hapus</button>
<a href="index.php" class="btn btn-secondary">Batal</a>
</form>
</div>
</div>
</div>
</div>
</div>
<!-- JS Here -->
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-C6RzsynM9kWDrMNeT87bh95OGNyZPhcTNXj1NW7RuBCsyN/o0jlpcV8Qyq46cDfL" crossorigin="anonymous"></script>
<script src="https://code.jquery.com/jquery-3.7.1.slim.js" integrity="sha256-UgvvN8vBkgO0luPSUl2s8TIlOSYRoGFAX4jlCIm9Adc=" crossorigin="anonymous"></script>
</body>
</html>