-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcetak.html
More file actions
40 lines (35 loc) · 708 Bytes
/
cetak.html
File metadata and controls
40 lines (35 loc) · 708 Bytes
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
<!DOCTYPE html>
<html>
<head>
<title>DATA SISWA</title>
</head>
<body>
<center>
<h2>DATA SISWA XI RPL 1</h2>
<?php
include 'koneksi.php';
?>
<table border="1">
<tr>
<th>ID</th>
<th>Username</th>
<th>Password</th>
<th>Level</th>
<th>Full Name</th>
</tr>
<?php
$no = 1;
$sql = mysqli_query($data,"SELECT * FROM data_siswa");
while($data = mysqli_fetch_array($sql)){
?>
<tr>
<td><?php echo $data['ID']; ?></td>
<td><?php echo $data['Username']; ?></td>
<td><?php echo $data['Password']; ?></td>
<td><?php echo $data['Level']; ?></td>
<td><?php echo $data['Full Name']; ?></td>
</tr>
</table>
</center>
</body>
</html>