-
Notifications
You must be signed in to change notification settings - Fork 0
/
laporan_cetak.php
82 lines (75 loc) · 2.8 KB
/
laporan_cetak.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
<html>
<link rel="stylesheet" href="senarai.css">
<link rel="stylesheet" href="button.css">
<body>
<table>
<tr>
<th>Bil</th>
<th>Nama</th>
<th>Kelas</th>
<th>Tarikh</th>
<th>Peratus</th>
</tr>
<?php
include('sambungan.php');
$pilihan = $_POST["pilihan"];
$idkelas = $_POST["idkelas"];
$peratus = $_POST["peratus"];
$sql = "select * from kuiz
join pelajar on kuiz.idpelajar = pelajar.idpelajar
join kelas on pelajar.idkelas = kelas.idkelas group by kuiz.idpelajar ";
switch ($pilihan) {
case 1 : $syarat = "";
$tajuk = "PENCAPAIAN KESELURUHAN"; break;
case 2 : $syarat = "having kelas.idkelas = '$idkelas' ";
$tajuk = "PENCAPAIAN MENGIKUT KELAS";break;
case 3 :
if ($peratus == 80) {
$syarat = "having peratus >= 80";
$tajuk = "PENCAPAIAN LEBIH DARI 80%";
}
else if ($peratus == 50){
$syarat = "having peratus >= 50";
$tajuk = "PENCAPAIAN LEBIH DARI 50%";
}
else if ($peratus == 0){
$syarat = "having peratus < 50";
$tajuk = "PENCAPAIAN KURANG DARI 50%";
}
break;
case 4 :
if ($peratus == 80) {
$syarat = "having peratus >= 80 and kelas.idkelas = '".$idkelas."' ";
$tajuk = "PENCAPAIAN MENGIKUT KELAS DAN LEBIH 80%";
}
else if ($peratus == 50){
$syarat = "having peratus >= 50 and kelas.idkelas = '".$idkelas."' ";
$tajuk = "PENCAPAIAN MENGIKUT KELAS DAN LEBIH 50%";
}
else if ($peratus == 0){
$syarat = "having peratus < 50 and kelas.idkelas = '".$idkelas."' ";
$tajuk = "PENCAPAIAN MENGIKUT KELAS DAN KURANG 50%";
}
break;
}
$bil = 1;
$sql = $sql.$syarat; // cantum
$data = mysqli_query($sambungan, $sql);
while ($kuiz = mysqli_fetch_array($data)) {
?>
<tr>
<td><?php echo $bil; ?></td>
<td><?php echo $kuiz['namapelajar']; ?></td>
<td><?php echo $kuiz['namakelas']; ?></td>
<td><?php echo $kuiz['tarikh']; ?></td>
<td><?php echo $kuiz['peratus']; ?></td>
</tr>
<?php
$bil = $bil + 1;
} // tamat while
?>
<caption><?php echo $tajuk; ?></caption>
</table>
<button class="cetak" onclick="window.print()">Cetak</button>
</body>
</html>