[ 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_uts.php
<!DOCTYPE html> <html> <head> <title></title> <style> table { border-collapse: collapse; width: 80%; } th, td { text-align: left; padding: 12px; } tr:nth-child(even){background-color: #f2f2f2} th { background-color: #4CAF50; color: white; } </style> </head> <body> <form method="post" action="<?php echo base_url(); ?>admin/simpan_nilai_uts"> <?php foreach($edit->result_array() as $e) { ?> <table > <tr> <td width="180">NIM</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><input type="text" size="50" class="input-read-only" value="<?php echo $e['nama_mahasiswa']; ?>" readonly="true"/></td> </tr> <tr> <td width="180">Kode Mata Kuliah</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><input type="text" size="50" class="input-read-only" value="<?php echo $e['nama_mk']; ?>" readonly="true"/></td> </tr> <tr> <td width="180">Kode Dosen</td> <td><input type="text" name="kd_dosen" size="50" class="input-read-only" value="<?php echo $e['kd_dosen']; ?>" readonly="true"/></td> </tr> <tr> <td width="180">Nama Dosen</td> <td><input type="text" size="50" class="input-read-only" value="<?php echo $e['nama_dosen']; ?>" readonly="true"/></td> </tr> <tr> <td width="180">Kode Tahun Ajaran</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><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><input type="text" name="nilai" size="50" class="input-read-only" value="<?php echo $e['nilai_uts']; ?>" /></td> </tr> </table> <input type="submit" value="Simpan Nilai" class="btn-kirim"> <a href="javascript: history.go(-1)" class="btn-kirim">Back</a> <input type="hidden" name="stts" value="edit"> <?php } ?> </form> </body> </html>