[ 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_riwayat.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> </head> <body> <a href="<?php echo base_url();?>dosen/insert_riwayat/<?php echo $kd_dosen; ?>" class="various" data-fancybox-type="iframe"> <i class="ace-icon fa fa-folder"></i> <span class="bigger-110">INPUT</span> </a> <table class="table table-striped table-bordered data"> <thead> <tr> <th>Tahun Lulus</th> <th>Program Pendidikan</th> <th>Perguruan Tinggi</th> <th>Jurusan/ Bidang Studi</th> <th>Edit</th> <th>Delete</th> </tr> </thead> <tr> <?php foreach ( $riwayat->result_array() as $sam) { ?> <td><?php echo $sam['thn_lulus']; ?></td> <td><?php echo $sam['pendidikan']; ?></td> <td><?php echo $sam['kampus']; ?></td> <td><?php echo $sam['jurusan']; ?></td> <td><a href="<?php echo base_url();?>dosen/insert_riwayat/<?php echo $kd_dosen; ?>" class="various" data-fancybox-type="iframe"> <i class="ace-icon fa fa-folder"></i> <span class="bigger-110">Edit</span> </a></td> <td><a href="#">Delete</a></td> </tr> <?php } ?> </table> </body> </html>