-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdetail_dokter.php
51 lines (51 loc) · 1.78 KB
/
detail_dokter.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
<?php
include("header.php");
$nip=$_GET['nip'];
$query=mysqli_query($config,"select * from dokter where nip='$nip'");
$ambil_data=mysqli_fetch_array($query);
?>
<div class="card col">
<h5 class="card-header">Detail dokter
<?php echo $ambil_data['nama']; ?></h5>
<div class="card-body">
<div class="row">
<div class="col-9">
<table class="table">
<tr>
<th width="20%">NIP</th>
<td>:</td>
<td><?php echo $ambil_data['nip']; ?></td>
</tr>
<tr>
<th>Nama Lengkap</th>
<td>:</td>
<td><?php echo $ambil_data['nama']; ?></td>
</tr>
<tr>
<th>Poli</th>
<td>:</td>
<td><?php echo $ambil_data['poli']; ?></td>
</tr>
<tr>
<th>Hari Praktek</th>
<td>:</td>
<td><?php echo $ambil_data['hari_praktek']; ?></td>
</tr>
<tr>
<th>Jam Praktek</th>
<td>:</td>
<td><?php echo $ambil_data['jam_praktek']; ?></td>
</tr>
<tr>
<tr>
<td colspan="3" align="right">
<a href="dokter.php">
<button class="btn btn-primary">Kembali</button>
</a>
</td>
</tr>
</table>
</div>
</div>
</div>
</div>