[ Mini Kiebo ]
Server: Windows NT DESKTOP-5B8S0D4 6.2 build 9200 (Windows 8 Professional Edition) i586
Path:
D:
/
Backup
/
05122024
/
htdocs
/
tracer
/
application
/
views
/
dosen
/
[
Home
]
File: bg_riwayat_ngajar.php
<style> .tab2 { border-collapse: collapse; width: 100%; } .tab2 th, td { padding: 8px; text-align: left; border-bottom: 1px solid #ddd; } </style> <?php $nm=''; foreach ($dosen->result_array() as $key) { $nm = $key['nama_dosen']; }?> <h4>Riwayat Mengajar <?php echo $nm;?> </h4> <table class="tab2"> <thead> <tr> <th align="center">Kode Mk</th> <th align="center">Matakuliah</th> <th align="center">Program Studi</th> </thead> </tr> <?php foreach ($dosen->result_array() as $value) { echo '<tr class="content"> <td>'.$value['kd_mk'].'</th> <td>'.$value['nama_mk'].'</th> <td>'.$value['jurusan'].'</th> </tr>'; } ?> </table>