[ 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
/
[
Home
]
File: bg_content.php
<table class="table table-striped table-bordered data"> <thead> <tr> <th align="center">No</th> <th align="center">Nama Mahasiswa</th> <th align="center">Prodi</th> <th align="center">Angkatan</th> <th align="center">View</th> <th align="center">Delete</th> </tr> </thead> <tbody> <?php $no=1; ?> <?php $status = ''; $stat = ''; foreach($data->result_array() as $d) { ?> <tr> <td align="center"><?php echo $no++; ?></td> <td align="center"><?php echo $d['nama']; ?></td> <td align="center"><?php echo $d['prodi']; ?></td> <td align="center"><?php echo $d['angkatan']; ?></td> <td > <a href="<?php echo base_url();?>admin/detailTracer/<?php echo $d['time'];?>" >View</a> </td> <td > <a href="<?php echo base_url();?>admin/deleteTracer/<?php echo $d['time'];?>" >Delete</a> </td> </tr> <?php } ?> </table> </div> </div> </body> <script type="text/javascript"> $(document).ready(function(){ $('.data').DataTable(); }); </script> </html>