[ 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
/
dosen
/
[
Home
]
File: bg_edit_pengabdian.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(); ?>dosen/simpan_pengabdian"> <table > <tr> <td width="180">Kode Dosen</td> <td><input type="text" name="kd_dosen" class="input-read-only" value="<?php echo $kd_dosen; ?>" readonly="true"/></td> </tr> <?php foreach ( $pengabdian->result_array() as $sam) { ?> <tr> <td width="180">Tahun</td> <td><input type="text" name="tahun" class="input-read-only" value="<?php echo $sam['tahun']; ?>"/></td> </tr> <tr> <td width="180">Kegiatan</td> <td> <textarea name="kegiatan" cols="55" rows="4"><?php echo $sam['kegiatan']; ?></textarea></td> </tr> <tr> <td width="180">Sumber Dana</td> <td><input type="text" name="sbr_dana" class="input-read-only" value="<?php echo $sam['sbr_dana']; ?>"/></td> </tr> <tr> <td width="180">Tempat</td> <td><input type="text" name="tempat" class="input-read-only" value="<?php echo $sam['tempat']; ?>"/></td> </tr> <input type="hidden" name="id_pengabdian" value="<?php echo $sam['id_pengabdian']; ?>"> <?php } ?> </table> <input type="submit" value="Simpan Nilai" class="btn-kirim"> <input type="hidden" name="stts" value="edit"> </form> </body> </html>