[ Mini Kiebo ]
Server: Windows NT DESKTOP-5B8S0D4 6.2 build 9200 (Windows 8 Professional Edition) i586
Path:
D:
/
Backup
/
05122024
/
htdocs
/
tracer
/
application
/
views
/
admin_absensi
/
[
Home
]
File: bg_absensi_mahasiswa_detail.php
<div class="container"> <div class="col-sm-12" > <table class="table"> <tr > <th >No</th> <th >Prodi</th> <th>Angkatan</th> <th>Kelas</th> <th> Dosen</th> <th> Matakuliah</th> <th> Detail</th> </tr> <?php $no = 1; foreach ($absen->result() as $key) {?> <tr> <td><?php echo $no++;?></td> <td><?php echo $key->jurusan;?></td> <td><?php echo $key->angkatan;?></td> <td><?php echo $key->kelas;?></td> <td><?php echo $key->nama_dosen;?></td> <td><?php echo $key->nama_mk;?></td> <td><a href="<?php echo base_url();?>admin_absensi/detailMhsAbsen/<?php echo $key->code;?>">Detail</a> </td> </tr> <?php } ?> </table> </div>