-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathfeereport.php
110 lines (96 loc) · 3.2 KB
/
feereport.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
<?php
session_start();
include("header.php");
include("connection.php");
?>
<div id="main">
<div id="content" class="left">
<div class="highlight">
<h3>Fee Report</h3>
<form id="form2" name="form2" method="post" action="">
<label for="textfield"></label>
<table width="371" border="0">
<tr>
<th width="122" height="35" scope="row"> School Type</th>
<td width="233"> <select name="insttype" id="insttype">
<?php
$arrec = array("Primary school","High school","PUC");
foreach($arrec as $value)
{
echo "<option value='$value'>$value </option>";
}
?>
</select></td>
</tr>
<tr>
<th height="39" scope="row">Year </th>
<td><select name="insttype2" id="insttype2">
<?php
$result = mysqli_query($con,"SELECT DISTINCT year FROM survey");
while($arrays = mysqli_fetch_array($result))
{
echo "<option value='$arrays[year]'>$arrays[year]</option>";
}
?>
</select></td>
</tr>
<tr>
<th height="38" scope="row"> </th>
<td><input type="submit" name="submit" id="submit" value=" Submit " /></td>
</tr>
</table>
</form>
<p> </p>
<table width="549" height="141" border="1">
<tr bgcolor="#CCCC00">
<td width="311" height="23" align="center"><strong>School Name</strong></td>
<td align="center"><strong>Fees</strong></td>
</tr>
<?php
//select institute
$result2 = mysqli_query($con,"SELECT * FROM institute where inst_type='$_POST[insttype]'");
while($arrays2 = mysqli_fetch_array($result2))
{
$result1 = mysqli_query($con,"SELECT * FROM survey where year='$_POST[insttype2]' AND inst_id = '$arrays2[0]'");
while($arrays1 = mysqli_fetch_array($result1))
{
$pay=0;
$result4 = mysqli_query($con,"SELECT * FROM payment
where surveyno='$arrays1[0]'");
while($arrays4 = mysqli_fetch_array($result4))
{
$pay_details = unserialize($arrays4[pay_details]);
$pay=$pay_details[32];
}
$entire0 = $entire0 + $pay;
}
echo "<tr bgcolor='#FFFFCC'>
<td height='23'> $arrays2[0]</td>
<td> $pay</td>
</tr>";
}
?>
<tr bgcolor="#CCCC00">
<td height="23" align="center"><b>Total</b></td>
<td width="222" align="center"><?php echo$entire0;?></td>
</tr>
</table>
<label for="type"><a href="surveytype.php"><strong>Back</strong></a></label>
<p> </p>
</div>
<div class="projects">
<div class="item"></div>
<div class="item">
<div class="cl"> </div>
</div>
</div>
</div>
<div class="cl"> </div>
</div>
<div class="shadow-l"></div>
<div class="shadow-r"></div>
<div class="shadow-b"></div>
</div>
<?php
include("footer.php");
?>