-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathstudentdash.php
272 lines (231 loc) · 8.27 KB
/
studentdash.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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="css/studentdash.css">
<title>Student Dashboard</title>
</head>
<body> <div class="bgimg">
<div id="non-printable"><?php include('topbar.php');?> </div>
<br><br><id='non-printable'hr>
<marquee id="non-printable" bgcolor="#CCCEDA" style="opacity: 0.6; color:red"; width="100%" direction="left" height="50px"><br>
Belive in originality !! Results are anounced so keep calm you will definetly pass !! Belive in originality
</marquee> <id='non-printable'hr>
<center>
<h1 id="non-printable">Student Result Management System</h1>
<div id="non-printable">
<form action="#" method="POST">
<!-- <center><h3>School Result Management</h3> -->
<!-- <h2>System</h2></center> -->
<table>
<tr>
<th>
<label>Enter Your Roll Id</label>
</th>
<td>
<input class="input-box" type="text" name="roll">
</td>
</tr>
<tr>
<th></th>
<td></td>
</tr>
<tr>
<th></th>
<td></td>
</tr>
<tr>
<th>
<label>Enter D. O. B.</label>
</th>
<td>
<input class="input-box" type="date" name="dob">
</td>
</tr>
<tr>
<th></th>
<td></td>
</tr>
<tr>
<th></th>
<td></td>
</tr>
<tr>
<th></th>
<td></td>
</tr><tr>
<th></th>
<td></td>
</tr><tr>
<th></th>
<td></td>
</tr><tr>
<th></th>
<td></td>
</tr><tr>
<th></th>
<td></td>
</tr>
<tr>
<th>
<button class="buton" type="submit" name="search" style="vertical-align:middle">
<span>Search </span>
</button>
</th>
<td>
<button class="buton" type="reset" name="reset" style="vertical-align:middle">
<span>Reset </span>
</button>
</td>
</tr>
</table>
</form><br><br><br><br><br><br><br><br><br>
<p ><small>Copyright © PANCHNAMA</small></p>
<br><br><br><br><br><br><br><br><br><br><br>
</div>
</center>
</body>
</html>
<?php
if(isset($_POST['search'])) {
$con=mysqli_connect('localhost','root','','rms');
if (!$con) {
die("Connection failed");
}
else{
$roll = $_POST['roll'];
$dob = $_POST['dob'];//do md5 at last
// here roll and dob are called from data base
$sql = "SELECT roll,dob FROM result ";
$res = mysqli_query($con,$sql);
$num_row = mysqli_num_rows($res);
if($num_row > 0){
while($row = mysqli_fetch_array($res)){
//this is to check if either of the fields are vacaent
if (empty($roll) || empty($dob)) {
$msg = 'requierd';
if($msg == 'requierd') echo '<script>alert("please fill all the fields")</script>';
break;
}
//this part is to chk if the pass and user name are correct
else if($roll == $row["roll"] && $dob == $row["dob"]){
echo '<script>alert("Result Declared scroll down to see")</script>';
$msg = 'yes';
break;
}
// this part is to accept
else {
$msg = 'no';
}
}
if($msg == 'no') echo '<script>alert("Invalid Details")</script>';
}
else
echo '<script>alert("Result Not Declared")</script>';
}
$sql1="SELECT * FROM result WHERE roll = '$roll' AND dob = '$dob'";
$res=mysqli_query($con,$sql1);
$num_rows=mysqli_num_rows($res);
if($num_rows>0)
{
while($row=mysqli_fetch_array($res))
{
echo "<div id='printable' ><id='non-printable'hr>";
echo "<br><br><center><h1>Student's Result</h1></center>";
echo "<table cellspacing='0' class='box' align='center' border='0'>";
echo "<tr>";
echo "<td align='right' style='font-size:20px;'>Student's Name:</td>";
echo "<td><td>";
echo "<td style='font-size:20px;'>";
echo $row['name'];
echo "</td>";
echo "</tr>";
echo "<tr>";
echo "<td align='right' style='font-size:20px;'>Roll No.:</td>";
echo "<td><td>";
echo "<td style='font-size:20px;'>";
echo $row['roll'];
echo "</td>";
echo "</tr>";
echo "<tr>";
echo "<td align='right' style='font-size:20px;'>Father's Name:</td>";
echo "<td> <td>";
echo "<td style='font-size:20px;'>";
echo $row['fname'];
echo "</td>";
echo "</tr>";
echo "<tr>";
echo "<td align='right' style='font-size:20px;'>Student's Name:</td>";
echo "<td><td>";
echo "<td style='font-size:20px;'>";
echo $row['name'];
echo "</td>";
echo "</tr>";
echo "<tr>";
echo "<td align='right' style='font-size:20px;'>Date of Birth:</td>";
echo "<td><td>";
echo "<td style='font-size:20px;'>";
echo $row['dob'];
echo "</td>";
echo "</tr>";
echo "<tr>";
echo "<td align='right' style='font-size:20px;'>Contact No.:</td>";
echo "<td><td>";
echo "<td style='font-size:20px;'>";
echo $row['contact'];
echo "</td>";
echo "</tr>";
echo "<tr>";
echo "<td align='right' style='font-size:20px;'>Image:</td>";
echo "<td><td>";
echo'<td>';
$imgname = $row['imgpath'];
if($row['imgpath']){echo "<img src='up/$imgname'>";}
else echo"No";
echo '</td>';
echo "</tr>";
echo "<tr>";
echo "<br><br><td align='center' colspan='2' style='font-size:20px;'>-:Marks Details:-</td>";
echo "</tr>";
echo "<tr>";
echo "<td align='right' style='font-size:20px;'>Marks in Maths:</td>";
echo "<td><td>";
echo "<td style='font-size:20px;'>";
echo $row['maths'];
echo "</td>";
echo "</tr>";
echo "<tr>";
echo "<td align='right' style='font-size:20px;'>Marks in English:</td>";
echo "<td><td>";
echo "<td style='font-size:20px;'>";
echo $row['english'];
echo "</td>";
echo "</tr>";
echo "<tr>";
echo "<td align='right' style='font-size:20px;'>Marks in Physics:</td>";
echo "<td><td>";
echo "<td style='font-size:20px;'>";
echo $row['phy'];
echo "</td>";
echo "</tr>";
echo "<tr>";
echo "<td align='right' style='font-size:20px;'>Marks in DSA:</td>";
echo "<td><td>";
echo "<td style='font-size:20px;'>";
echo $row['dsa'];
echo "</td>";
echo "</tr>";
echo "<tr>";
echo "<td align='right' style='font-size:20px;'>Marks in BE</td>";
echo "<td><td>";
echo "<td style='font-size:20px;'>";
echo $row['be'];
echo "</td>";
echo "</tr>";
echo "</table>";
echo "</div>";
}
}
if($msg == 'yes') echo "<br><br><center><button id='non-printable' class='buton' onclick='javascript:window.print();'><span>Print</span></button>
";
}
?>