Phantom1605

getKelas.php

Aug 29th, 2017
47
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.47 KB | None | 0 0
  1. <?php
  2.     include "../libs/class.php";
  3.  
  4.     $absensi = new Database;
  5.  
  6.     $kode = $_GET['kode_makul'];
  7.     $hasil = $absensi->fetch("tbl_matakuliah mk, tbl_prodi p, tbl_kelas k","mk.kode_prodi = p.kode_prodi and k.kode_prodi = p.kode_prodi and mk.kode_makul = '$kode' order by mk.nama_matakuliah");
  8.     echo "<option value='#'>- Pilih Kelas -</option>";
  9.     foreach ($hasil as $result) {
  10.         echo "<option value=\"".$result['kode_kelas']."\">".$result['nama_kelas']."</option>\n";
  11.     }
  12. ?>
Add Comment
Please, Sign In to add comment