-
Notifications
You must be signed in to change notification settings - Fork 1
/
cat.php
executable file
·351 lines (319 loc) · 10.3 KB
/
cat.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
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
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
<?php
session_start();
include"auth.php";
$sun = -20;
$mess = '';
include("sett.php");
if(isset($_POST['step']) && $_POST['step'] != ''){ $step = $_POST['step']; }else{ $step = "0"; }
if(isset($_POST['name']) && $_POST['name'] != '' || isset($_POST['sub']) && $_POST['step'] == '2' && $_POST['step'] != ''){ $step = $_POST['step']; }else{ $step = "0";if(isset($_POST['step'])){ if($_POST['step'] == '1'){$mess = "<div align='center' class='errd'>Subject cannot be left blank!</div>"; }}}
if(isset($_POST['toco']) && $_POST['toco'] != '' || isset($_POST['sub']) && $_POST['step'] == '2' && $_POST['step'] != ''){ $step = $_POST['step']; }else{ $step = "0";if(isset($_POST['toco'])){ if($_POST['step'] == '1'){$mess = "<div align='center' class='errd'>Topic covered cannot be left blank!</div>"; }}}
if($step == '1'){
$date = $_POST['date'];
if (($timestamp = strtotime($date)) === false) {
$step = "0";
$mess = "<div class='errd'align='center'>Invalid Date entered (Date entered by you: ' $date ')</div>";
}
}
?>
<!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>Change Attendance</title>
<link type="text/css" href="css/ui-lightness/jquery-ui-1.8.17.custom.css" rel="stylesheet" />
<script type="text/javascript" src="js/jquery-1.7.1.min.js"></script>
<script type="text/javascript" src="js/jquery-ui-1.8.17.custom.min.js"></script>
<script type="text/javascript">
$(function(){
// Datepicker
$('#datepicker').datepicker({ dateFormat: 'dd-mm-yy' });
//$(".chk").hide();
$(".chk2").hide();
$("#otime").hide();
document.getElementById('timm').name = 'unuasable';
});
var fre
var dre
var drsde
function vinaysd(drsde){
if(drsde == 'others'){
$("#otime").show();
document.getElementById('dummy').name = 'unuasable';
document.getElementById('timm').name = 'time';
}else{
$("#otime").hide();
document.getElementById('dummy').name = 'time';
document.getElementById('timm').name = 'unuasable';
}
}
function fr(fre , dre){
if(dre == false){
$(fre).show();
}else{
$(fre).hide();
}
}
</script>
<style type="text/css">
.chk {
width: 25px;
height: 25px;
background-color:#FFCCCC;
color:Green;
border:0px dotted #00f;
}
.chk2 {
width: 25px;
height: 25px;
background-color:#FFCCCC;
color:Red;
border:0px dotted #00f;
font-size:34px;
font-weight:bold;
}
.casd {
width: 25px;
height: 25px;
background-color:#FFCCCC;
color:Red;
border:0px dotted #00f;
font-size:34px;
font-weight:bold;
}
body{
background-color:#FFCCFF;
font-family:Arial, Helvetica, sans-serif;
}
.tb2{
background-color: #FFCCFF;
border:#FF66FF dashed 2px;
padding:20px;
}
.btns{
background:#FF66FF;
font-weight:bold;
border:#FF99FF double 2px;
padding:5px;
}
.btns:hover{
background: #FF33FF;
cursor:pointer;
}
.tb3{
background:#FFCCCC;
padding:20px;
border: dashed #FF00CC 3px;
}
.errd{
color:#FF0000;
font-size:large;
}
.tds{
border:#FF6699 1px solid;
padding:4px;
}
.tds:hover{
border:#FF6699 2px solid;
padding:3px;
}
</style>
</head>
<body bgcolor="#FFFF99">
<?php if($step == "0"){ ?>
<h1><center>Change Attendance</center></h1><hr />
You are here: <a href="index.php">Home</a> > <a href="cat.php">Change Attendance</a> ><b> Step 1</b>
<hr />
<?php echo($mess); ?>
<form action="" method="POST">
<table width="500" border="0" align="center" class="tb2">
<tr>
<td><b>Subject</b></td>
<td><b> : </b></td>
<td><select name="name">
<option></option>
<?php
$con = mysql_connect($host,$user,$pass);
if (!$con)
{
die('Could not connect contact admin!');
}
mysql_select_db($db, $con);
if($_SESSION['usid'] == 'admin'){
$result = mysql_query("SELECT * FROM cou");
while($row = mysql_fetch_array($result))
{
$sun = $row['name'];
list($user, $asscads) = explode("vinaycksproject",$sun);
echo("<option value=\"".$sun."\">Faculty:".$user." Sub:".$asscads."</option>");
}} else {
$result = mysql_query("SELECT * FROM cou");
while($row = mysql_fetch_array($result))
{
$sun = $row['name'];
list($user, $asscads) = explode("vinaycksproject",$sun);
if($asscads != '' && $user == $_SESSION['usid']){
echo("<option value=\"".$sun."\">".$asscads."</option>");
}}}
mysql_close($con);
?>
</select>
</td>
</tr>
<tr>
<td><b>Time:</b></td>
<td><b> : </b></td>
<td><select name="time" onchange="javascript:vinaysd(this.value);" id="dummy" >
<option>8.00 AM</option>
<option>9.00 AM</option>
<option>10.15 AM</option>
<option>11.15 AM</option>
<option>01.00 PM</option>
<option>02.00 PM</option>
<option>03.15 PM</option>
<option>04.15 PM</option>
<option>05.15 PM</option>
<option>others</option>
</select><span id="otime"><input type="text" name="time" id="timm" />HH-MM<br /></div></td>
</tr>
<tr>
<td><b>Date</b></td>
<td><b> : </b></td>
<td><input type="text" name="date" id="datepicker" /></td>
</tr>
<tr>
<td><b>Topic Covered</b></td>
<td><b> : </b></td>
<td><input type="text" name="toco" /></td>
</tr>
<tr>
<td colspan="3"><center><input type="hidden" name="step" value="1" />
<input class="btns" type="submit" /></center></td>
</tr>
</table>
</form>
<?php } else if($step == "1") { echo($mess);
$name = $_POST['name'];
$con = mysql_connect($host,$user,$pass);
if (!$con)
{
die('Could not connect contact admin!');
}
mysql_select_db($db, $con);
$sub = $_POST['name'];
$date = $_POST['date'];
$time = $_POST['time'];
$toco = $_POST['toco'];
if (($timestamp = strtotime($date)) === false) {
die("Invalid Date entered ($date)");
}
$result = mysql_query("SELECT * FROM num WHERE name='$sub'");
while($row = mysql_fetch_array($result))
{
$sun = $row['num'];
}
if($sun < 0){die("There is no subjectlike that!".$sub);}
?>
<h1><center>Change Attendance Data</center></h1><hr />
You are here: <a href="index.php">Home</a> > <a href="cat.php">Change Attendance</a> ><b> Step 2</b>
<hr />
<form action="" method="POST">
<input type="hidden" name="step" value="2" />
<table border="0" align="center" class="tb3">
<tr>
<td class="tds"><center><b>Roll.No.</b></center></td>
<td class="tds"><center><b>USN</b></center></td>
<td class="tds"><center><b>Name</b></center></td>
<td class="tds"><center><b>Attendance</b></center></td>
</tr>
<?php
$i = '1';
while($i <= $sun){
$result = mysql_query("SELECT * FROM $sub WHERE srn='$i'");
while($row = mysql_fetch_array($result))
{
$rinkn = $row['rollnum'];
$usn = $row['usn'];
$nam = $row['name'];
$dateii = $date .' '.$time;
$rertgtgsult = mysql_query("SELECT * FROM $sub WHERE srn='$i'");
while($roww = mysql_fetch_array($rertgtgsult))
{
$tyfty = $roww[$dateii];
if(!$tyfty){die("<div class='errd' align='center'>Error! You Have Not Entered attendance for this date and time!</div>");}
}
echo "<tr> <td class='tds'><center>".$rinkn."</center></td>
<td class='tds'><center>".$usn."</center></td>
<td class='tds'><center>".$nam."</center></td>";
if($tyfty == 'A'){
echo "<td class='tds'><center><input class='chk' id='y_".$i."' type=\"checkbox\" onclick='javascript:fr(\"#n_".$i."\", this.checked);' name=\"att_".$i."\"><span class='casd' id='n_".$i."'>X </spaN></center></td>";
}else if($tyfty == 'P'){
echo "<td class='tds'><center><input class='chk' id='y_".$i."' type=\"checkbox\" onclick='javascript:fr(\"#n_".$i."\", this.checked);' name=\"att_".$i."\" checked=\"checked\"><span class='chk2' id='n_".$i."'>X </spaN></center></td>";
}
echo "</tr>";
$i++;
}
}
mysql_close($con);
?>
<tr>
<td colspan="4"><center>
<input type="hidden" name="date" value="<?php echo($date); ?>" />
<input type="hidden" name="time" value="<?php echo($time); ?>" />
<input type="hidden" name="toco" value="<?php echo($toco); ?>" />
<input type="hidden" name="sub" value="<?php echo($sub); ?>" />
<input type="hidden" name="sun" value="<?php echo($sun); ?>" />
<input type="submit" class="btns" /></center></td>
</tr>
</table>
</form>
<?php }else if($step == "2"){
$sub = $_POST['sub'];
$sun = $_POST['sun'];
$date = $_POST['date'];
$time = $_POST['time'];
$toco = $_POST['toco'];
$con = mysql_connect($host,$user,$pass);
if (!$con)
{
die('Could not connect contact admin!');
}
mysql_select_db($db, $con);
$i = '1';
while($i <= $sun){
if(isset($_POST['att_'.$i]) && $_POST['att_'.$i] != ''){
$att = "P";
}else{
$att = "A";
}
$dateii = $date .' '.$time;
if(!mysql_query("UPDATE $sub SET `$dateii` = '$att' WHERE srn = '$i'")){die("Error conatct admin!");}
$i++;
}
$dateii = $date .' '.$time;
if(!mysql_query("UPDATE `$sub` SET `$dateii` = '$date' WHERE name = 'date'")){die("Error conatct admin!");}
if(!mysql_query("UPDATE `$sub` SET `$dateii` = '$time' WHERE name = 'time'")){die("Error conatct admin!");}
if(!mysql_query("UPDATE `$sub` SET `$dateii` = '$toco' WHERE name = 'toco'")){die("Error conatct admin!");}
$dskdo = date("m.d.y");
$gtaf = date("H:i:s");
if(!mysql_query("UPDATE `$sub` SET `$dateii` = '$dskdo' WHERE name = 'adate'")){die("Error conatct admin!");}
if(!mysql_query("UPDATE `$sub` SET `$dateii` = '$gtaf' WHERE name = 'atime'")){die("Error conatct admin!");}
mysql_close($con);
?>
<h1><center>Change Attendance</center></h1><hr />
You are here: <a href="index.php">Home</a> > <a href="eat.php">Enter Attendance</a> ><b> Success</b>
<hr />
<div align="center"><h1>Successfully changed Attendance!</h1><br />
<a href="index.php">Home</a></div>
<?php }else{?>
<h1><center>Change Attendance</center></h1><hr />
You are here: <a href="index.php">Home</a> > <a href="cat.php">Change Attendance</a> ><b> Error</b>
<hr />
<div align="center" class="errd"><h1>Error encountered please try again. Sorry!.</h1><br />
<a href="index.php">Home</a>
<?php } ?>
<br />
<br />
<hr />
<center><a style="text-decoration:none;" href="credits.html">----[ © VINAY C K ] [ Developed by VINAY C K ] [vinayck.work@gmail.com]----</a></center>
</body>
</html>