[ 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_penelitian.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 : true, closeClick : false, openEffect : 'none', closeEffect : 'none' }); }); </script> </head> <body> <a href="<?php echo base_url();?>dosen/penelitian/<?php echo $kd_dosen; ?>" class="various" data-fancybox-type="iframe"> <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>Tahun</th> <th>Judul Penelitian</th> <th>Sumber Dana</th> <th>Edit</th> <th>Delete</th> </tr> </thead> <tr> <?php foreach ( $penelitian->result_array() as $sam) { ?> <td><?php echo $sam['tahun']; ?></td> <td><?php echo $sam['judul_penelitian']; ?></td> <td><?php echo $sam['sbr_dana']; ?></td> <td><a href="<?php echo base_url();?>dosen/edit_penelitian/<?php echo $sam['id_penelitian']; ?>" class="various" data-fancybox-type="iframe"> <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_penelitian/<?php echo $sam['id_penelitian']; ?>"> <i class="fa fa-trash" aria-hidden="true"></i> <span class="bigger-110">Delete</span> </a></td> </tr> <?php } ?> </table> </body> </html>