[ Mini Kiebo ]
Server: Windows NT DESKTOP-5B8S0D4 6.2 build 9200 (Windows 8 Professional Edition) i586
Path:
D:
/
Backup
/
05122024
/
htdocs
/
tracer
/
application
/
views
/
mahasiswa
/
[
Home
]
File: bg_cetakkrs_coba.php
<!DOCTYPE html> <html> <head> <title></title> </head> <body> <?php $temp=''; $rows=array(); $totalNH=0; $totalSKS=0; $no=1; ?> <table> <tr> <th> Tahun Ajaran : <? echo $thn_ajaran;?></th> <th> Semester : <? echo $semester;?></th> </tr> </table> <table class="table table-striped table-bordered data" > <thead> <tr > <th align="center">No</th> <th align="center">Kode Mata Kuliah</th> <th align="center">Mata Kuliah</th> <th align="center">semester</th> <th align="center">sks</th> <th align="center">Dosen</th> </tr> </thead> <?php $smt=''; $no = 1; foreach($khs->result_array() as $value) { $smt = $value['semester']; $link = base_url().'mahasiswa/cetak_krs_pertama/'.$value['semester']; echo'<tr> <td>'. $no++.'</td> <td>'. $value['kd_mk'].'</td> <td> '. $value['nama_mk'].'</td> <td align="center">'. $value['semester'].'</td> <td align="center">'. $value['jum_sks'].'</td> <td align="center">'. $value['nama_dosen'].'</td> </tr>'; //$smtt=$value['semester']; }?> </table> <button> <a href="<?php echo base_url();?>mahasiswa/cetak_krs_detail/<?php echo $smt; ?>"> Print <i class="ace-icon fa fa-print align-top bigger-125 icon-on-right"></i></a> </button> </body> </html>