-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
ekspor.php
116 lines (99 loc) · 3.63 KB
/
ekspor.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
<?php
include 'koneksi.php';
header("Content-type: application/vnd.ms-word");
header("Content-Disposition: attachment;Filename=data-transaksi.doc");
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Kwitansi Pembayaran SPP SMK Mahardhika</title>
</head>
<body>
<?php
if (isset($_POST['daritanggal'])) {
$daritanggal = ($_POST['daritanggal']);
$sampaitanggal = ($_POST['sampaitanggal']);
?>
<p align="center">DATA TRANSAKSI PEMBAYARAN SPP </p>
<p align="center">SMK MAHARDHIKA</p>
<p align="center">DARI TANGGAL <?php echo $daritanggal;?> SAMPAI TANGGAL <?php echo $sampaitanggal;?></p>
<p> </p>
<table>
<thead>
<tr>
<th>No</th>
<th>NISN</th>
<th>Nama</th>
<th>Kelas</th>
<th>Tanggal Bayar</th>
<th>Bulan Dibayar</th>
<th>Tahun Dibayar</th>
<th>Petugas</th>
</thead>
<tbody>
<?php
$query = "SELECT * FROM pembayaran,siswa,spp,petugas,kelas WHERE pembayaran.nisn=siswa.nisn AND siswa.id_spp=spp.id_spp AND pembayaran.id_petugas=petugas.id_petugas AND siswa.id_kelas=kelas.id_kelas AND (pembayaran.tgl_bayar between '$daritanggal' AND '$sampaitanggal')";
$result = mysqli_query($koneksi, $query);
if(!$result){
die ("Query Error: ".mysqli_errno($koneksi).
" - ".mysqli_error($koneksi));
}
$no=1;
while ($data = mysqli_fetch_assoc($result)){
$tahunsekarang=date('Y');
$tahunmasuksiswa=$data['tahun'];
$diff = ($tahunsekarang-$tahunmasuksiswa) ;
if($diff==0){
$kelasnow="X";
}
else if($diff==1){
$bulansekarang=date('n');
if($bulansekarang==7 ||$bulansekarang==8 ||$bulansekarang== 9 ||$bulansekarang==10 || $bulansekarang==11 || $bulansekarang==12){
$kelasnow= "XI";
}
else{
$kelasnow="X";
}
}
else if($diff==2){
$bulansekarang=date('n');
if($bulansekarang==7 ||$bulansekarang==8 ||$bulansekarang== 9 ||$bulansekarang==10 || $bulansekarang==11 || $bulansekarang==12){
$kelasnow= "XII";
}
else{
$kelasnow="XI";
}
}
else if($diff==3){
$bulansekarang=date('n');
if($bulansekarang==7 ||$bulansekarang==8 ||$bulansekarang== 9 ||$bulansekarang==10 || $bulansekarang==11 || $bulansekarang==12){
$kelasnow= "alumni";
}
else{
$kelasnow="XII";
}
}
else if($diff>3){
$kelasnow="alumni";
}
?>
<tr>
<td><?php echo $no; ?></td>
<td><?php echo $data['nisn']; ?></td>
<td><?php echo $data['nama']; ?></td>
<td><?= $kelasnow; ?> - <?= $data['nama_kelas']; ?></td>
<td><?php echo $data['tgl_bayar']; ?></td>
<td><?php if($data['bulan_dibayar']==1){ echo "Januari"; }else if($data['bulan_dibayar']==2){ echo "Februari"; }else if($data['bulan_dibayar']==3){ echo "Maret"; }else if($data['bulan_dibayar']==4){ echo "April"; }else if($data['bulan_dibayar']==5){ echo "Mei"; }else if($data['bulan_dibayar']==6){ echo "Juni"; }else if($data['bulan_dibayar']==7){ echo "Juli"; } else if($data['bulan_dibayar']==8){ echo "Agustus"; }else if($data['bulan_dibayar']==9){ echo "September"; }else if($data['bulan_dibayar']==10){ echo "Oktober"; }else if($data['bulan_dibayar']==11){ echo "November"; }else if($data['bulan_dibayar']==12){ echo "Desember"; }?></td>
<td><?php echo $data['tahun_dibayar']; ?></td>
<td><?php echo $data['nama_petugas']; ?></td>
</tr>
<?php
$no++;
}
}
?>
</tbody>
</table>
</body>
</html>