[ 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_form_profile.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/insert_profile_dosen"> <table > <?php foreach($dosen->result_array() as $e) { ?> <tr> <td width="180">NIP</td> <td><input type="text" size="50" class="input-read-only" value="<?php echo $nidn; ?>" readonly="true"/></td> </tr> <tr> <td width="180">Tempat & Tanggal Lahir</td> <td><input type="text" name="ttl" size="50" class="input-read-only" value="<?php echo $e['ttl']; ?>" /></td> </tr> <tr> <td width="180">Jenis Kelamin</td> <td><input type="text" name="jenis_kelamin" size="50" class="input-read-only" value="<?php echo $e['jenis_kelamin']; ?>"/></td> </tr> <tr> <td width="180">Agama</td> <td><input type="text" name="agama" size="50" class="input-read-only" value="<?php echo $e['agama']; ?>"/></td> </tr> <tr> <td width="180">Golongan/ Pangkat</td> <td><input type="text" name="pangkat" size="50" class="input-read-only" value="<?php echo $e['pangkat']; ?>"/></td> </tr> <tr> <td width="180">Jabatan Fungsional Akademik</td> <td><input type="text" name="jabatan" size="50" class="input-read-only" value="<?php echo $e['jabatan']; ?>" /></td> </tr> <tr> <td width="180">No Telp/HP</td> <td><input type="text" name="phone" size="50" class="input-read-only" value="<?php echo $e['phone']; ?>"/></td> </tr> <tr> <td width="180">Email</td> <td><input type="text" name="email" size="50" class="input-read-only" value="<?php echo $e['email']; ?>" /></td> </tr> <?php } ?> </table> <input type="submit" value="Simpan Data" class="btn-kirim"> <input type="hidden" name="stts" value="tambah"> </form> </body> </html>