[ 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
/
mahasiswa
/
[
Home
]
File: home_admin.php
<!DOCTYPE html> <head> <title>Upload Gambar (Image), Rename dan Resize</title> <!-- variabel diambil dari controller --> </head> <body> <table class="table table-striped table-bordered data"> <thead> <tr> <th>Nama File</th> <th>Gambar File</th> <th>Keterangan</th> <th>Download</th> </tr> </thead> <? foreach ($query ->result() as $row) { ?> <tr> <td><?=$row->namafile;?></td> <td> <a href="<?=base_url()?>assets/uploads/<?=$row->namafile;?>" data-rel="colorbox"> <img src="<?=base_url()?>assets/images/nobook.png" width="40" height="50" > </a> </td> <td><?=$row->keterangan;?></td> <td> <a href = "<?php echo base_url();?>mahasiswa/download/<?php echo $row->namafile;?>" class="btn btn-success"> Download </a></td> </tr> <?php } ?> </table> </body> <script type="text/javascript"> $(document).ready(function(){ $('.data').DataTable(); }); </script> </html>