-
Notifications
You must be signed in to change notification settings - Fork 1
/
hasil.php
71 lines (62 loc) · 2.78 KB
/
hasil.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
59
60
61
62
63
64
65
66
67
68
69
70
71
<?php
require_once 'config.php'; // mengimpor konfigurasi koneksi database
$query = "SELECT mahasiswa_id, mata_kuliah, berkas, status_ajuan FROM krs"; // menyimpan query untuk mengambil seluruh data pendaftar
$result = mysqli_query($conn, $query); // mengeksekusi query dan menyimpan hasilnya pada variabel $result
?>
<!DOCTYPE html>
<html>
<head>
<title>Pendaftaran Masuk</title>
<link rel="shortcut icon" href="img/icon.ico" type="image/x-icon">
<script src="https://cdn.jsdelivr.net/npm/chart.js"></script>
<link rel="stylesheet" type="text/css" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css">
</head>
<body>
<!-- navbar -->
<nav class="navbar navbar-expand-lg navbar-dark bg-secondary">
<div class="container">
<div class="collapse navbar-collapse" id="navbarNavAltMarkup">
<div class="navbar-nav">
<a class="nav-link {{($active === " daftar ") ? 'active' : ''}} " href="index.php">Registrasi KRS</a>
<a class="nav-link {{($active === "pendaftar") ? 'active' : ''}} " href="daftar_mahasiswa.php">Daftar Mahasiswa</a>
<a class="nav-link {{($active === "pendaftar") ? 'active' : ''}} " href="hasil.php">KRS</a>
</div>
</div>
</div>
</nav>
<!-- end navbar -->
<div class="container">
<h1 class="text-center mt-5 mb-5">Hasil Pendaftaran</h1>
<table class="table">
<thead>
<tr>
<th>NIM</th>
<th>Mata Kuliah</th>
<th>Berkas</th>
<th>Status Ajuan</th>
</tr>
</thead>
<tbody>
<!-- mengambil data secara berulang dari variabel $result hingga data yang tersedia habis. -->
<?php while ($row = mysqli_fetch_assoc($result)) { ?>
<!-- akan ditampilkan data dalam bentuk tabel dengan menggunakan tag <tr> untuk setiap baris data, dan tag <td> untuk setiap kolom data yang diambil dari variabel $row sesuai dengan nama kolom di tabel database.
Nilai dari setiap kolom data tersebut ditampilkan menggunakan fungsi echo untuk mencetak nilainya ke dalam HTML.
-->
<tr>
<td><?php echo $row['mahasiswa_id']; ?></td>
<td><?php echo $row['mata_kuliah']; ?></td>
<td><?php echo $row['berkas']; ?></td>
<td><?php echo $row['status_ajuan']; ?></td>
</tr>
<?php } ?>
</tbody>
</table>
<button><a href="index.php">Back</a></button>
</div>
</script>
</div>
</body>
</html>
<?php
mysqli_close($conn);
?>