| Server IP : 216.106.184.20 / Your IP : 216.73.216.234 Web Server : LiteSpeed System : Linux asmodeus.in-hell.com 5.14.0-570.58.1.el9_6.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Oct 29 06:24:11 EDT 2025 x86_64 User : sekoaid1 ( 1891) PHP Version : 7.3.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /home/sekoaid1/spp.raudhatulfalah.sch.id/tes/ |
Upload File : |
<?php
session_start();
error_reporting(0);
include "config/koneksi.php";
include "config/library.php";
include "config/fungsi_indotgl.php";
include "config/fungsi_seo.php";
if (isset($_SESSION[id])) {
if ($_SESSION['level'] == 'admin') {
$iden = mysql_fetch_array(mysql_query("SELECT * FROM users where username='$_SESSION[id]'"));
$nama = $iden['nama_lengkap'];
$level = 'Administrator';
$foto = 'dist/img/user.png';
}
$idt = mysql_fetch_array(mysql_query("SELECT * FROM identitas where npsn='10700295'"));
$ta = mysql_fetch_array(mysql_query("SELECT * FROM tahun_ajaran where idTahunAjaran='$_GET[tahun]'"));
$kls = mysql_fetch_array(mysql_query("SELECT * FROM kelas_siswa where idKelas='$_GET[kelas]'"));
$dBayar = mysql_fetch_array(mysql_query("SELECT * FROM jenis_bayar WHERE idJenisBayar='$_GET[jenisBayar]'"));
$tahun = $_GET['tahun'];
$jenis = $_GET['jenisBayar'];
$kelas = $_GET['kelas'];
$sqlLap = mysql_query("SELECT * FROM siswa
WHERE idSiswa
IN (SELECT idSiswa FROM tagihan_bulanan WHERE idJenisBayar='$jenis' AND idKelas='$kelas')
AND idKelas='$kelas' ORDER BY nmSiswa ASC");
header("Content-type: application/vnd-ms-excel");
header("Content-Disposition: attachment; filename=laporan_bulanan_kelas_" . str_replace(" ", "_", $kls['nmKelas']) . "_" . date('dmyHis') . ".xls");
?>
<table border="1">
<thead>
<tr>
<th>No.</th>
<th>NIS</th>
<th>Nama Siswa</th>
<th>Juli</th>
<th>Agustus</th>
<th>September</th>
<th>Oktober</th>
<th>November</th>
<th>Desember</th>
<th>Januari</th>
<th>Februari</th>
<th>Maret</th>
<th>April</th>
<th>Mei</th>
<th>Juni</th>
</tr>
</thead>
<?php
$no = 1;
while ($rt = mysql_fetch_array($sqlLap)) {
echo "<tr>
<td align='center'>$no</td>
<td align='center'>$rt[nisSiswa]</td>
<td>$rt[nmSiswa]</td>";
$sqlTB = mysql_query("SELECT tagihan_bulanan.*, bulan.nmBulan, bulan.urutan
FROM tagihan_bulanan
INNER JOIN bulan ON tagihan_bulanan.idBulan = bulan.idBulan
WHERE tagihan_bulanan.idSiswa = '$rt[idSiswa]' AND tagihan_bulanan.idJenisBayar = '$jenis' ORDER BY bulan.urutan ASC");
while ($t = mysql_fetch_array($sqlTB)) {
if ($t['statusBayar'] == '1') {
$date = strtotime($t['tglBayar']);
$tgl = date('d/m/y', $date);
$jmlbayar = $t['jumlahBayar'];
} else {
$tgl = '-';
$jmlbayar = '0';
}
//echo "<td align='center'>$tgl<br/>$jmlbayar</td>";
echo "<td align='center'>$jmlbayar</td>";
}
echo "</tr>";
$no++;
}
?>
</table>
<?php
} else {
include "login.php";
}
?>