[ 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
/
admin_cuti
/
[
Home
]
File: bg_cuti_all.php
<div class="container"> <h2>Data Mahasiswa Cuti</h2> <table class="table table-striped"> <tr> <th >No</th> <th >NIM</th> <th>NAMA</th> <th>ANGKATAN</th> <th>PROGRAM STUDI </th> <th>TANGGAL INPUT</th> <th>SEMESTER</th> <th>TAHUN AJARAN</th> <th>AKTIFKAN</th> </tr> <?php $no = 1; foreach ($cuti->result() as $key) { $time = date('d-m-Y',$key->time); echo'<tr> <td>'.$no++.'</td> <td>'.$key->nim.'</td> <td>'.$key->nama_mahasiswa.'</td> <td>'.$key->angkatan.'</td> <td>'.$key->jurusan.'</td> <td>'.$time.'</td> <td>'.$key->semester.'</td> <td>'.$key->keterangan.'</td> <td><form method="post" action="#"> <input type="hidden" name="nim" value="'.$key->nim.'"/> <input type="submit" value="Aktifkan"></form></td> </tr>'; } ?> </table> </div>