[ Mini Kiebo ]
Server: Windows NT DESKTOP-5B8S0D4 6.2 build 9200 (Windows 8 Professional Edition) i586
Path:
D:
/
Backup
/
05122024
/
htdocs
/
siakad
/
mahasiswa
/
Akademik
/
[
Home
]
File: JadwalMK.inc.php
<?php $nmTable = "m_kd"; $nmForm = "mainform.php?sabilillah=nilaikkm"; //hak akses $formnama = "nilaikkm"; $registerform = lastlogin($_SESSION["user-id"],$formnama); if(isset($_SESSION["id-profil"])) $idlogprof = $_SESSION["id-profil"]; else $idlogprof = 0; if($idlogprof == 0) echo "<script>window.alert('".$lsm."');location.href='index.php';</script>"; ?> <div id="wrapper"> <div class="content-wrapper container"> <div class="row"> <div class="col-md-12"> <div class="panel panel-card "> <!-- Start .panel --> <div class="panel-heading"> <div class="panel-actions"> </div> </div> <div class="panel-body"> <div class="table-responsive"> <table id="basic-datatable" class="table dt-responsive nowrap w-100"> <thead> <tr> <th>No.</th> <th>Hari</th> <th>Mata Kuliah</th> <th>Waktu</th> <th>Prodi</th> <th>Kelas</th> </tr> </thead> <tbody> <?php $query = "select * from m_jam_pelajaran a left join m_matapelajaran b on a.id_mk = b.mp_id left join m_kelas c on a.id_kelas = c.kelas_id"; // echo $query; // $query = "select * from m_nilai_kkm"; $iData=sAllData($query); $no = 0; for($a=0,$b=count($iData);$a<$b;$a++) { echo "<tr>"; echo "<td>".($a+1).".</td>"; echo "<td>".$iData[$a]["jam_hari"]." </td>"; echo "<td>".$iData[$a]["mp_nama"]." </td>"; echo "<td>".$iData[$a]["jam_pelajaran_mulai"]." - ".$iData[$a]["jam_pelajaran_selesai"]." </td>"; echo "<td>".$iData[$a]["kelas_nama"]." </td>"; echo "<td>".$iData[$a]["nm_kelas"]." </td>"; echo "</tr>"; } echo "</table>"; echo "</form>"; ?> </div> </div> </div><!-- End .panel --> </div><!--end .col--> </div><!--end .row--> </div><div style="clear:both;"></div> </div>