Advertisement
Thelz

pilih kelas

Jan 29th, 2020
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.36 KB | None | 0 0
  1. <td><SELECT name="id_kelas" class="form-control">
  2.                     <option value="">[ PILIH KELAS ]</option>
  3.                     <?php while ($murid = mysqli_fetch_object($datakelas)) { ?>
  4.                     <option value="<?= $murid->id_kelas ?>" <?= @$result->id_kelas == $murid->id_kelas ? 'selected' : '' ?> >
  5.                         <?= $murid->nama_kelas ?>
  6.                     </option>
  7.                     <?php } ?>
  8.                 </SELECT>
  9.             </td>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement