| 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/mts/admin/ |
Upload File : |
<?php
if (isset($_GET['tampil'])) {
$kelas = $_GET['idKelas'];
} else {
$kelas = '';
}
?>
<div class="col-xs-12">
<div class="box box-primary box-solid">
<div class="box-header with-border">
<h3 class="box-title"><span class="fa fa-file-text-o"></span> Laporan Data Siswa</h3>
</div><!-- /.box-header -->
<div class="box-body">
<form method="GET" action="" class="form-horizontal">
<div class="form-group">
<input type="hidden" name="view" value="lapsiswa">
<label for="" class="col-sm-2 control-label">Kelas</label>
<div class="col-sm-2">
<select name="idKelas" class="form-control">
<?php
$sqk = mysql_query("SELECT * FROM kelas_siswa ORDER BY idKelas ASC");
while ($k = mysql_fetch_array($sqk)) {
$selected = ($k['idKelas'] == $kelas) ? ' selected="selected"' : "";
echo "<option value=" . $k['idKelas'] . " " . $selected . ">" . $k['nmKelas'] . "</option>";
}
?>
</select>
</div>
<div class="col-sm-2">
<input type="submit" name="tampil" value="Tampilkan" class="btn btn-success">
</div>
</div>
</form>
</div><!-- /.box-body -->
</div><!-- /.box -->
<?php
if (isset($_GET['tampil'])) {
$sqlSiswa = mysql_query("SELECT *
FROM
view_detil_siswa
WHERE idKelas='$_GET[idKelas]' AND statusSiswa='Aktif' ORDER BY nmSiswa ASC");
?>
<div class="box box-primary">
<div class="box-body">
<table id="example1" class="table table-striped">
<thead>
<tr>
<th>No.</th>
<th>NIS</th>
<th>NISN</th>
<th>Nama Siswa</th>
<th>Jenis Kelamin</th>
<th>Kelas</th>
<th>Nama Orang Tua</th>
<th>No. Hp</th>
</tr>
</thead>
<tbody>
<?php
$no = 1;
while ($ds = mysql_fetch_array($sqlSiswa)) {
echo "<tr>
<td>$no</td>
<td>$ds[nisSiswa]</td>
<td>$ds[nisnSiswa]</td>
<td>$ds[nmSiswa]</td>
<td>$ds[jkSiswa]</td>
<td>$ds[nmKelas]</td>
<td>$ds[nmOrtu]</td>
<td align='center'>$ds[noHpOrtu]</td>
</tr>";
$no++;
}
?>
</tbody>
</table>
</div><!-- /.box-body -->
<div class="box-footer">
<a class="btn btn-success" target="_blank" href="./excel_laporan_siswa_perkelas.php?kelas=<?php echo $_GET['idKelas']; ?>"><span class="fa fa-file-excel-o"></span> Export ke Excel</a>
<!--<a class="btn btn-warning" target="_blank" href="./pdf_laporan_siswa_perkelas.php?kelas=<?php //echo $_GET['idKelas'];
?>"><span class="fa fa-file-pdf-o"></span> Export ke Pdf</a>-->
<a class="pull-right btn btn-danger" target="_blank" href="./cetak_laporan_siswa_perkelas.php?kelas=<?php echo $_GET['idKelas']; ?>"><span class="glyphicon glyphicon-print"></span> Cetak Laporan</a>
</div>
</div><!-- /.box -->
<?php
}
?>
</div>