| 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 "));
$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]'"));
?>
<!DOCTYPE html>
<html>
<head>
<title>Cetak - Laporan Pembayaran Siswa</title>
<link rel="stylesheet" href="bootstrap/css/printer.css">
</head>
<body>
<?php
$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");
?>
<!-- Box Data -->
<div class="col-xs-12">
<table width="100%">
<tr>
<td width="100px" align="left"><img src="./gambar/logo/<?php echo $idt['logo_kiri']; ?>" height="60px"></td>
<td valign="top">
<h3 align="center" style="margin-bottom:8px ">
<?php echo $idt['nmSekolah']; ?>
</h3>
<center><?php echo $idt['alamat']; ?></center>
</td>
<td width="100px" align="right"><img src="./gambar/logo/<?php echo $idt['logo_kanan']; ?>" height="60px"></td>
</tr>
</table>
<hr>
<h3 align="center">LAPORAN PEMBAYARAN <?php echo strtoupper($dBayar['nmJenisBayar']); ?></h3>
<div class="box box-info box-solid">
<div class="box-header with-border">
<h3 class="box-title">KELAS : <?php echo $kls['nmKelas']; ?></h3>
</div><!-- /.box-header -->
<div class="box-body">
<table class="table table-bordered table-striped">
<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>
<tbody>
<?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++;
}
?>
</tbody>
</table>
</div><!-- /.box-body -->
</div><!-- /.box -->
</div>
<br />
<table width="100%">
<tr>
<td align="center"></td>
<td align="center" width="400px">
<?php echo $idt['kabupaten']; ?>, <?php echo tgl_raport(date("Y-m-d")); ?>
<br />Bendahara,<br /><br /><br /><br />
<b><u><?php echo $idt['nmBendahara']; ?></u><br /><?php echo $idt['nipBendahara']; ?></b>
</td>
</tr>
</table>
</body>
<script>
window.print()
</script>
</html>
<?php
} else {
include "login.php";
}
?>