forked from arajajyothibabu/School-Management-System
-
Notifications
You must be signed in to change notification settings - Fork 0
/
admininsert.php
202 lines (192 loc) · 8.09 KB
/
admininsert.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
<?php require_once("includes/session.php"); ?>
<?php require_once("includes/connection.php"); ?>
<?php require_once("includes/functions.php"); ?>
<!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=utf-8" />
<link rel="stylesheet" href="css/style.css" type="text/css" />
<link rel="stylesheet" href="css/bootstrap.min.css" type="text/css" />
<script src="js/bootstrap.min.js" type="text/javascript"></script>
</head>
<?php
if(isset($_POST['insert']))
{
$medium = $_POST['medium'];
$class = $_POST['class'];
$section = $_POST['section'];
$dtno = 1;
$subject = $_POST['subject'];
$faculty = $_POST['faculty'];
if($medium != "" && $class != "" && $section != "" && $dtno != "" && $subject != "" || $dtno == 1 && $faculty != "")
{
$akey_query = mysql_query("select * from akey where medium = '$medium' and class = '$class' and section = '$section'") or die(mysql_error());
$akey_query_result = mysql_fetch_array($akey_query);
$key_sub_query = mysql_query("select * from key_sub where sub = '$subject' and akey = '$akey_query_result[0]'");
$key_sub_query_result = mysql_fetch_array($key_sub_query);
//***********
$current_year = date("Y");
$year_from_current_id = mysql_query("select max(aca_year) from current_id");
if($year_from_current_id)
{
$year_from_current_id_result = mysql_fetch_array($year_from_current_id);
if($current_year > $year_from_current_id_result[0])
$current_year -= 1;
}
//*************
$current_id_query = mysql_query("select * from current_id where akey = '$akey_query_result[0]' and aca_year = '$current_year'") or die(mysql_error());
$i = 0;
// inserting staff for a subject
$sub_staff_query = mysql_query("INSERT into sub_staff values ('','$key_sub_query_result[0]','$faculty','$current_year')");
while($current_id_query_result = mysql_fetch_array($current_id_query))
{
$i += 1;
//inserting tuples for unit tests.
//inserting academic key (aca_key) at once in a year
//*********************************
$insert_academic_key_query = mysql_query("INSERT into aca_key values('','$current_id_query_result[0]','$key_sub_query_result[0]')");
$aca_key_query = mysql_query("select max(sno) from aca_key");
$aca_key = mysql_fetch_array($aca_key_query);
//checking if DT-1 already exists
//$check_dtno1 = mysql_query("select * from marks_dt where aca_key = '$aca_key[0]' and dtno = '1'");
$units_test_query = mysql_query("select * from test") or die(mysql_error());
if($units_test_query)
while($units_test_query_result = mysql_fetch_array($units_test_query))
{
$insert_unit_test_tuples = mysql_query("INSERT into marks_units values('','$aca_key[0]','$units_test_query_result[0]','','','1')");
}
//insering tuples for entire class
$insert_marks_DT_query = mysql_query("INSERT into marks_dts values('','$aca_key[0]','$dtno','','1')") or die(mysql_error());
}
if($i == 0)
$message = "No records inserted..! Try again..!";
else $message = '<span style="font-size:16;">'.$i.'</span> students have their records inserted..!';
}
else
{
$message = "Please fill all the fields..!";
}
}
else
{
$medium = "";
$class = "";
$section = "";
$dtno = "";
$subject = "";
$faculty = "";
}
?>
<body class="main">
<div class="main">
<h1 align="center">Master Insert for Academic year <span style="font-size:12px; color:#F00;">(only once in a year)</span></h1>
<form role="form" action="" method="post" name="f">
<div class="row">
<div class="col-md-4">
<div class="form-group">
<select class="form-control" id="medium" name="medium">
<option>--Meduim--</option>
<option value="E" <?php if($medium == "E")echo 'selected="selected"';?>>English Medium</option>
<option value="T" <?php if($medium == "T")echo 'selected="selected"';?>>Telugu Medium</option>
</select>
</div>
</div>
<div class="col-md-4">
<div class="form-group">
<select class="form-control" id="sel1" name="class">
<option>--Class--</option>
<option value="-2" <?php if($class == "-2")echo 'selected="selected"';?>>LKG</option>
<option value="-1" <?php if($class == "-1")echo 'selected="selected"';?>>UKG</option>
<option value="0" <?php if($class == "0")echo 'selected="selected"';?>>Nursery</option>
<option value="1" <?php if($class == "1")echo 'selected="selected"';?>>1</option>
<option value="2" <?php if($class == "2")echo 'selected="selected"';?>>2</option>
<option value="3" <?php if($class == "3")echo 'selected="selected"';?>>3</option>
<option value="4" <?php if($class == "4")echo 'selected="selected"';?>>4</option>
<option value="5" <?php if($class == "5")echo 'selected="selected"';?>>5</option>
<option value="6" <?php if($class == "6")echo 'selected="selected"';?>>6</option>
<option value="7" <?php if($class == "7")echo 'selected="selected"';?>>7</option>
<option value="8" <?php if($class == "8")echo 'selected="selected"';?>>8</option>
<option value="9" <?php if($class == "9")echo 'selected="selected"';?>>9</option>
<option value="10" <?php if($class == "10")echo 'selected="selected"';?>>10</option>
</select>
</div>
</div>
<div class="col-md-4">
<div class="form-group">
<select name="section" class="form-control">
<option value="A">--Section--</option>
<option value="A" <?php if($section == "A")echo 'selected="selected"';?>>A</option>
<option value="B" <?php if($section == "B")echo 'selected="selected"';?>>B</option>
<option value="C" <?php if($section == "C")echo 'selected="selected"';?>>C</option>
<option value="D" <?php if($section == "D")echo 'selected="selected"';?>>D</option>
<option value="E" <?php if($section == "E")echo 'selected="selected"';?>>E</option>
</select>
</div>
</div>
</div>
<div class="row">
<div class="col-md-2">
</div>
<div class="col-md-4">
<div class="form-group">
<select name="subject" class="form-control">
<option value="">--Subject--</option>
<?php
$subject_query = mysql_query("select * from subjects") or die(mysql_error());
while($subject_query_result = mysql_fetch_array($subject_query))
{
echo '<option value="'.$subject_query_result[0].'"';
if($subject == $subject_query_result[0]) echo 'selected="selected">';
else echo '>';
echo $subject_query_result[1].'</option>';
}
?>
</select>
</div>
</div>
<div class="col-md-4">
<div class="form-group">
<select name="faculty" class="form-control">
<option value="">--Staff of Subject--</option>
<?php
$staff_query = mysql_query("select * from staff") or die(mysql_error());
while($staff_query_result = mysql_fetch_array($staff_query))
{
echo '<option value="'.$staff_query_result[0].'"';
if($faculty == $staff_query_result[0]) echo 'selected="selected">';
else echo '>';
echo $staff_query_result[1].'</option>';
}
?>
</select>
</div>
</div>
<div class="col-md-2">
</div>
</div>
<hr />
<div class="row">
<div class="col-md-2">
</div>
<div class="col-md-8">
<div class="form-group">
<input type="submit" name="insert" value="INSERT" class="form-control" style="background-color:#0F0;" />
</div>
</div>
<div class="col-md-2">
</div>
</div>
</form>
<?php if(isset($message)) echo '<h4 align="center" style="color:#FF0000; background-color:#FFF;">'.$message.'</h4>'; ?>
</div>
<script type="text/javascript">
function staff()
{
if(document.f.dtno.value == 1)
document.getElementById('staff').style.display = 'block';
else
document.getElementById('staff').style.display = 'none';
}
</script>
</body>
</html>