[ Mini Kiebo ]
Server: Windows NT DESKTOP-5B8S0D4 6.2 build 9200 (Windows 8 Professional Edition) i586
Path:
D:
/
Backup
/
05122024
/
htdocs
/
tracer
/
application
/
views
/
dosen
/
[
Home
]
File: bg_form_riwayat.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_riwayat"> <table > <tr> <td width="180">Kode Dosen</td> <td><input type="text" name="kd_dosen" size="50" class="input-read-only" value="<?php echo $kd_dosen; ?>" readonly="true"/></td> </tr> <?php //foreach ( $riwayat->result_array() as $sam) // { ?> <tr> <td width="180">Tahun Lulus</td> <td><input type="text" name="thn_lulus" size="50" class="input-read-only" value="<?php //echo $sam['thn_lulus']; ?>" /></td> </tr> <tr> <td width="180">Program Pendidikan</td> <td><input type="text" name="pendidikan" size="50" class="input-read-only" value=""/></td> </tr> <tr> <td width="180">Perguruan Tinggi</td> <td><input type="text" name="kampus" size="50" class="input-read-only" value="<?php //echo $sam['kampus']; ?>"/></td> </tr> <tr> <td width="180">Jurusan/ Bidang Studi</td> <td><input type="text" name="jurusan" size="50" class="input-read-only" value="<?php //echo $sam['jurusan']; ?>"/></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="tambah"> </form> </body> </html>