[ Mini Kiebo ]
Server: Windows NT DESKTOP-5B8S0D4 6.2 build 9200 (Windows 8 Professional Edition) i586
Path:
D:
/
Backup
/
14082024
/
Data
/
htdocs
/
htdocs
/
tracer
/
application
/
views
/
admin_next
/
[
Home
]
File: bg_ceck_krs.php
<!DOCTYPE html> <html> <head> <title></title> <table class="table table-striped table-bordered data" > <thead> <tr> <th align="center">No</th> <th align="center">NIM</th> <th align="center">Nama Mahasiswa</th> <th align="center">Angkatan</th> <th align="center">Jurusan</th> <th align="center">*</th> </tr> </thead> <tbody> <?php $no=1; foreach($jur->result_array() as $k) { echo'<tr> <td align="center">'.$no.'</td><td>'.$k['nim'].'</td><td>'.$k['nama_mahasiswa'].'</td><td>'.$k['angkatan'].'</td><td>'.$k['jurusan'].'</td> <td align="center"><a href="'.base_url().'admin_next/approvKrs/'.$k['nim'].'" class="link" rel="example_group">Cek Krs</a></td> '; $no++; } ?> </tbody> </table> </div> </body> <script type="text/javascript"> $(document).ready(function(){ $('.data').DataTable(); }); </script> </html>