-
Notifications
You must be signed in to change notification settings - Fork 0
/
view_prodi.php
34 lines (33 loc) · 995 Bytes
/
view_prodi.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
<?php
include_once 'top.php';
require_once 'db/tabel/Prodi.php';
$objprodi = new prodi();
$id = $_GET['id'];
$data = $objprodi->getById($id);
?>
<!--Buat tampilan dengan tabel-->
<div class="row">
<div class="col-md-12">
<div class="panel panel-default">
<div class="panel-heading">
<h3 class="panel-title">View Prodi</h3>
</div>
<?php foreach($data as $data) ?>
<div class="panel-body">
<table class="table">
<tr>
<td class="active">Kode</td><td>:</td><td><?php echo
$data['kode']?></td>
</tr>
<tr>
<td class="active">Nama</td><td>:</td><td><?php echo
$data['nama']?></td>
</table>
</div>
<? 'endforeach'; ?>
</div>
</div>
</div>
<?php
include_once 'bottom.php';
?>