forked from leemacat2/FinalMadApp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaddexams.html
213 lines (130 loc) · 3.43 KB
/
addexams.html
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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
<html>
<head>
<title>Classes</title>
<meta name="viewport" content="width=device-width,initial-scale=1">
<link rel="stylesheet" type="text/css" href="css/ThisIsIt.css">
<script type="text/javascript" src="js/jquery.js"></script>
<script type="text/javascript" src="js/jquery.mobile-1.1.1.min.js"></script>
<script type= "text/javascript">
$(document).ready(function(){
$.getJSON("http://10.0.2.2/SERVER/centerlist.php",function(result)
{
$.each(result,function(i,item){
$("#center").append("<option>"+item+"</option>");
});
});
$("#center").change(function(){
var center=$("#center").val();
$("#level").html("<option>loading..</option>");
$.getJSON("http://10.0.2.2/SERVER/levellist.php",{center:center},function(result)
{
$.each(result,function(i,item){
$("#level").append("<option>"+item+"</option>");
});
});
});
$("#level").change(function(){
var center=$("#center").val();
var level=$("#level").val();
//alert(level);
$("#kids").html("<option>loading..</option>");
$.getJSON("http://10.0.2.2/SERVER/kidslist.php",{center:center,level:level},function(result)
{
$.each(result,function(i,item){
$("#kids").append("<option>"+item+"</option>");
});
});
});
$("#submit").click(function(){
var speaking=$("#speaking").val();
var listening=$("#listening").val();
var progress=$("#progress").val();
$.getJSON("http://10.0.2.2/SERVER/entermarks.php",{speaking:speaking,listening:listening;progress:progress},function(result){
alert("marks entered succeesfully!");
});
});
$("#logout").click(function(){
window.location="index.html";
})
$("#dashboard").click(function(){
window.location="home.html";
})
});
</script>
<link rel="stylesheet" href="css/jquery.mobile.structure-1.1.1.css" />
</head>
<body>
<div data-role="page">
<div data-role="header" data-position="fixed" data-fullscreen="true">
<a href="" data-icon="home" data-iconpos="notext" id="dashboard"/>Home</a>
<h1>MADApp</h1>
<a href="" data-iconpos="notext" data-icon="logout" id="logout">Logout</a>
</div><!--header-->
<br><br><br>
<div data-role="content" data-theme="a">
<div align="center">
<form name="examresults" id="form1" style="width:50%;">
Date<br>
<input type="text" id="date" name="date">
Center<br>
<select id="center">
<option>Select Center</option>
</select>
<div id="divlevel">
Level<br>
<select id="level">
<option>Select Level</option>
</select>
</div>
<div id="divkids">
Kids<br>
<select id="kids">
<option>Select Kids</option>
</select>
</div>
<div id="divmarks" >
<table>
<tr>
<th>Section
</th>
<th>Score
</th>
</tr>
<tr>
<td>speaking(20)
</td>
<td>
<input type="text" id="speaking" name="speaking" size="3">
</td>
</tr>
<tr>
<td>Listening(12)
</td>
<td>
<input type="text" id="listening" name="listening">
</td>
</tr>
<tr>
<td>Progress Test(35)
</td>
<td><input type="text" id="progress" name="progress">
</td>
</tr>
</table>
</div>
<input type="button" id="submit" value="Enter Marks">
</form>
</div>
</div>
<div data-role="footer" data-theme="a" data-position="fixed" data-fullscreen="true" data-id="foo">
<div data-role="navbar" >
<ul>
<li><a data-rel="back" data-icon="back" data-ajax="false">Previous</a></li>
<li><a href="updates.html" data-icon="star" data-ajax="false">Updates</a></li>
<li><a href="profile.html" data-icon="info">Profile</a></li>
</ul>
</div><!-- /navbar -->
</div>
</div>
</body>
</html>