[ 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_persetujuan.php
<!DOCTYPE html> <html> <head> <title></title> </head> <body> <table class="table table-striped table-bordered data"> <thead> <tr> <th height=27>No.</th><th>NIM</th><th>Nama Mahasiswa</th><th>Jurusan</th><th width=75>Detail KRS</th> </tr> </thead> <?php $no=1; foreach($mhs->result_array() as $k) { $st = ""; if($k['status']=='0'){ $st = "Belum Disetujui"; $warna = "#ccc"; $link = base_url().'dosen_krs/detail_krs_two/'.$k['nim'].'/'.$k['status']; $cf = "example_group"; } else if($k['status']=='1') { $st = "Sudah Disetujui"; $warna = ""; $link = base_url().'dosen_krs/detail_krs_two/'.$k['nim'].'/'.$k['status']; $cf = "example_group"; } else if($k['status']==NULL) { $st = "Belum KRS"; $warna = "#999"; $link = '#'; $cf = ""; } echo'<tr> <td align="center">'.$no.'</td><td>'.$k['nim'].'</td><td>'.$k['nama_mahasiswa'].'</td><td>'.$k['jurusan'].'</td>'; echo'<td> <a class="link" href="'.$link.'" title="Detail Kartu Rencana Studi - '.$k[ 'nama_mahasiswa'].'" rel="'.$cf.'">Cek Detail</a></td> </tr>'; $no++; } ?> </table> </body> <script type="text/javascript"> $(document).ready(function(){ $('.data').DataTable(); }); </script> </html>