-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsurveytype.php
98 lines (90 loc) · 2.76 KB
/
surveytype.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
<?php
include("header.php");
include("connection.php");
if($_POST[institutetype] == "Fee Chart")
{
header("Location: chartfees.php");
}
else if($_POST[institutetype] == "Result Chart")
{
header("Location: chartresults.php");
}
else if($_POST[institutetype] == "Populationwise chart")
{
header("Location: chartpopulation.php");
}
else if($_POST[reporttype] == "Area Report")
{
header("Location: areareport.php");
}
else if($_POST[reporttype] == "Fee Report")
{
header("Location: feereport.php");
}
else if($_POST[reporttype] == "Population Report")
{
header("Location: Populationreport.php");
}
else if($_POST[reporttype] == "Staff Report")
{
header("Location: staffreport.php");
}
else if($_POST[reporttype] == "Vicinity Report")
{
header("Location: vicinityreport.php");
}
else if($_POST[reporttype] == "Result Report")
{
header("Location: resultreport.php");
}
?>
<div id="main">
<div id="content" class="left">
<div class="highlight">
<h3>Report Type</h3>
<form id="form1" name="form1" method="post" action="">
<p>
<label for="reporttype">Report Type</label>
<select name="reporttype" id="reporttype">
<option value="Area Report">Area Report</option>
<option value="Fee Report">Fee Report</option>
<option value="Population Report">Population Report</option>
<option value="Staff Report">Staff Report</option>
<option value="Vicinity Report">Vicinity Report</option>
<option value="Result Report">Result Report</option>
</select>
<input type="submit" name="button" id="button" value="Submit" />
</p>
</form>
<p> </p><form id="form1" name="form1" method="post" action="">
<h3>Chart </h3>
<p>
<label for="institutetype2">Institute Type</label>
<select name="institutetype" id="institutetype">
<option value="Fee Chart">Fee Chart</option>
<option value="Result Chart">Result Chart</option>
<option value="Populationwise chart">Populationwise chart</option>
</select>
<input type="submit" name="button" id="button" value="View survey" />
</p>
</form>
</div>
<div class="projects">
<div class="item"></div>
<div class="item">
<div class="cl"> </div>
</div>
</div>
</div>
<?php
include("sidebar.php");
?>
<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");
?>