[ Mini Kiebo ]
Server: Windows NT DESKTOP-5B8S0D4 6.2 build 9200 (Windows 8 Professional Edition) i586
Path:
D:
/
Backup
/
05122024
/
htdocs
/
tracer
/
application
/
views
/
admin_keuangan
/
[
Home
]
File: bg_total_keuangan_print.php
<!DOCTYPE html> <html> <head> <title></title> </head> <body onLoad="javascript:window.print()"> <h5> Laporan Keuangan Akbid Bhakti Asih Purwakarta dari tanggal <?php echo $dari;?> sampai <?php echo $sampai;?> </h5> <table class="table table-striped table-bordered data" border="1" cellpadding="5" cellspacing="0" width="100%" style="border-collapse: collapse;"> <tr> <th align="center">No</th> <th align="center">NIM</th> <th align="center">Nama Mahasiswa</th> <th align="center">Angkatan</th> <th align="center">Jurusan</th> <th align="center">Jumlah</th> <th align="center">Keterangan</th> </tr> <?php $jum= 0; $no = 1; foreach ($data->result() as $key) { $jum += $key->jumlah; $total = number_format("$jum",2,",","."); ?> <tr> <td><?php echo $no++;?></td> <td><?php echo $key->nim;?></td> <td><?php echo $key->nama_mahasiswa;?></td> <td><?php echo $key->angkatan;?></td> <td><?php echo $key->jurusan;?></td> <td>Rp. <?php echo number_format("$key->jumlah",2,",",".");?></td> <td><?php echo $key->keterangan;?></td> </tr> <?php } ?> <tr><td colspan="5"><b>TOTAL :</b></td><td><b>Rp. <?php echo $total;?></b></td><td> </td></tr> </table> </body> </html>