[ 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: br_krs_acc.php
<!DOCTYPE html> <html> <head> <title></title> </head> <body> <table class="table table-striped table-bordered data" > <thead> <tr> <th align="center">No</th> <th align="center">Kode MK</th> <th align="center">Mata Kuliah</th> <th align="center">SKS</th> <th align="center">Semester</th> <th align="center">jadwal</th> <th align="center">Dosen</th> </tr> </thead> <tbody> <?php $no=1; foreach ($variable->result_array() as $value ) { $checkboxvalue ="chk_".$value['kd_jadwal'].""; echo'<tr > <td>'.$no++.'</td> <td>'.$value['kd_mk'].'</td> <td>'.$value['nama_mk'].'</td> <td id="id'.$value['kd_jadwal'].'">'.$value['jum_sks'].'</td> <td>'.$value['semester'].'</td> <td>'.$value['jadwal'].'</td> <td>'.$value['nama_dosen'].'</td> </tr>'; } ?> </tbody> </table> </body> </html>