[ 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
/
admin
/
[
Home
]
File: bgTampilJadwal.php
<!DOCTYPE html> <html> <head> <title></title> <style type="text/css"> .bgh { position: relative; margin: 5px 0 0 50px; width: 90%; height: auto; box-shadow: 2px 2px 12px #888888; } .ghj { position: absolute; padding: 5px 0 0 10px; width: 90px; height: auto; } div.ghj img.vbg { width: 100px; height: auto; } .bhj { position: relative; margin: 5px 0 0 600px; width: 300px; height: auto; } div.bhj img.jkg { width: 100px; height: auto; } </style> </head> <body> <br><br> <div style="text-align:center;font-size:17px;height: 100px;"> <span> JADWAL KULIAH PROGRAM STUDI <?= $pro;?> </span> <br> <span>SEMESTER <?= $this->session->userdata("semester");?> TAHUN AJARAN <?= $this->session->userdata("tahunAjaran");?></span><br> <span>STIKES ABDI NUSANTARA JAKARTA</span> </div> <table class="table table-striped table-bordered data" > <thead> <tr style="background-color:#f0f0f0; "> <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"> Hari / Jam / Ruangan</th> <th align="center">Dosen</th> <th align="center">Kelas</th> </tr> </thead> <tbody> <?php $no=1; foreach ($jwdl->result_array() as $value ) { echo'<tr > <td>'.$no++.'</td> <td>'.$value['kd_mk'].'</td> <td>'.$value['nama_mk'].'</td> <td>'.$value['jum_sks'].'</td> <td>'.$value['jadwal'].'</td> <td>'.$value['nama_dosen'].'</td> <td>'.$value['kelas'].'</td> </tr>'; } ?> </tbody> </table> </div> </body> </html>