[ 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
/
a
/
[
Home
]
File: bg_edit_nilai.php
<!DOCTYPE html> <html> <head> <title></title> </head> <body> <form method="post" action="<?php echo base_url(); ?>admin/simpan_nilai"> <?php foreach($edit->result_array() as $e) { ?> <table> <tr> <td width="180">NIM</td> <td width="50">:</td> <td><input type="text" name="nim" size="50" class="input-read-only" value="<?php echo $e['nim']; ?>" readonly="true" /></td> </tr> <tr> <td width="180">Nama Mahasiswa</td> <td width="50">:</td> <td><input type="text" size="50" class="input-read-only" value="<?php echo $e['nama_mahasiswa']; ?>" /></td> </tr> <tr> <td width="180">Kode Mata Kuliah</td> <td width="50">:</td> <td><input type="text" name="kd_mk" size="50" class="input-read-only" value="<?php echo $e['kd_mk']; ?>" readonly="true" /></td> </tr> <tr> <td width="180">Mata Kuliah</td> <td width="50">:</td> <td><input type="text" size="50" class="input-read-only" value="<?php echo $e['nama_mk']; ?>" /></td> </tr> <tr> <td width="180">Kode Dosen</td> <td width="50">:</td> <td><input type="text" name="kd_dosen" size="50" class="input-read-only" value="<?php echo $e['kd_dosen']; ?>" /></td> </tr> <tr> <td width="180">Nama Dosen</td> <td width="50">:</td> <td><input type="text" size="50" class="input-read-only" value="<?php echo $e['nama_dosen']; ?>" /></td> </tr> <tr> <td width="180">Kode Tahun Ajaran</td> <td width="50">:</td> <td><input type="text" name="kd_tahun" size="50" class="input-read-only" value="<?php echo $e['kd_tahun']; ?>" /></td> </tr> <tr> <td width="180">Semester Ditempuh</td> <td width="50">:</td> <td><input type="text" name="semester_ditempuh" size="50" class="input-read-only" value="<?php echo $e['semester_ditempuh']; ?>" /></td> </tr> <tr> <td width="180">Nilai</td> <td width="50">:</td> <td><input type="text" name="grade" size="50" class="input-read-only" value="<?php echo $e['grade']; ?>" /></td> </tr> <tr> <td width="180"></td> <td width="50"></td> <td> <input type="submit" value="Simpan Nilai" class="btn-kirim"> <input type="reset" value="Batal" class="btn-kirim"> <input type="hidden" name="stts" value="edit"></td> </tr> </table> <?php } ?> </form> </body> </html>