[ 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_profile_ilmiah.php
<!DOCTYPE html> <html> <head> <title></title> <link rel="stylesheet" href="<?php echo base_url();?>/assets/fancybox/source/jquery.fancybox.css?v=2.1.5" type="text/css" media="screen" /> <script type="text/javascript" src="<?php echo base_url();?>/assets/fancybox/source/jquery.fancybox.pack.js?v=2.1.5"></script> <script type="text/javascript"> $(document).ready(function() { $(".various").fancybox({ maxWidth : 800, maxHeight : 600, fitToView : false, width : '90%', height : '90%', autoSize : false, closeClick : false, openEffect : 'none', closeEffect : 'none' }); }); </script> <style> /* batas */ img.sul { width: 40px; } </style> </head> <body> <a href="<?php echo base_url();?>dosen/ilmiah/<?php echo $kd_dosen; ?>" > <i class="fa fa-file-text" aria-hidden="true"></i> <span class="bigger-110">Input</span> </a> <table class="table table-striped table-bordered data"> <thead> <tr> <th>No</th> <th>Jenis Kegiatan</th> <th>Tempat</th> <th>Waktu</th> <th>Sebagai</th> <th>Lampiran</th> <th>Edit</th> <th>Delete</th> </tr> </thead> <?php $no=1; ?> <tr> <?php foreach ( $ilmiah->result() as $sam) { ?> <td><?php echo $no++; ?></td> <td><?php echo $sam->jenis_kegiatan; ?></td> <td><?php echo $sam->tempat; ?></td> <td><?php echo $sam->waktu; ?></td> <td><?php echo $sam->sebagai; ?></td> <td> <?php if ( $sam->nama_file =='') { echo " "; } else if ($sam->nama_file !=='') { echo " <a href='".base_url('assets/uploads/'.$sam->nama_file)."'> <img class='sul' src='".base_url('assets/images/nobook.png')."' > </a>" ; } ?> </td> <td><a href="<?php echo base_url();?>dosen/edit_ilmiah/<?php echo $sam->id_ilmiah; ?>" > <i class="fa fa-pencil-square-o" aria-hidden="true"></i> <span class="bigger-110">Edit</span> </a></td> <td><a href="<?php echo base_url();?>dosen/hapus_ilmiah/<?php echo $sam->id_ilmiah;; ?>"> <i class="fa fa-trash" aria-hidden="true"></i> <span class="bigger-110">Delete</span> </a></td> </tr> <?php } ?> </table> </body> </html>