[ 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_dua
/
[
Home
]
File: bg_biomhs.php
<!DOCTYPE html> <html> <head> <title></title> </head> <body> <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">view</th> </tr> </thead> <tbody> <?php $no=1; ?> <?php foreach($mahasiswa->result_array() as $d) { ?> <tr> <td align="center"><?php echo $no++; ?></td> <td align="center"><?php echo $d['nim']; ?></td> <td align="center"><?php echo $d['nama_mahasiswa']; ?></td> <td align="center"><?php echo $d['angkatan']; ?></td> <td align="center"><?php echo $d['jurusan']; ?></td> <td align="center" width="60"> <?php echo '<a href="'.base_url().'admin/view_mahasiswa/'.$d['nim'].'" rel="example_group" class="link" style="float:left;"><span class="green"> <i class="ace-icon fa fa-pencil-square-o bigger-120"></i> </span></a>'; ?> </td> </tr> <?php } ?> </tbody> </table> </body> <script type="text/javascript"> $(document).ready(function(){ $('.data').DataTable(); }); </script> </html>