-
Notifications
You must be signed in to change notification settings - Fork 1
/
student-result.php
162 lines (148 loc) · 6.3 KB
/
student-result.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
<?php
session_start();
if(!isset($_SESSION['login']))
{
header("location:session-expired.php");
}
else
if(!(($_SESSION['login']=="student") || ($_SESSION['login']=="admin")))
{
header("location:session-expired.php");
}
else
if(!($_SESSION['username']==$_REQUEST['r'])){
header("location:session-expired.php");
}
else
{
?>
<html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Result</title>
<link rel="stylesheet" href="home-style.css">
<link rel="stylesheet" href="student-result.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Be+Vietnam+Pro:wght@400;500&family=Raleway:wght@400;500&display=swap" rel="stylesheet">
<script src="https://kit.fontawesome.com/eabac940d1.js" crossorigin="anonymous"></script>
</head>
<body>
<!-----------------------------navbar--------------------------->
<div class="nav-container">
<nav class="nav-bar">
<span class="logo" >SVHSS</span>
<div class="links">
<a href="index.php" class="link-text">Home</a>
<a href="index.php#contact" class="link-text">contact</a>
<a href="logout.php" class="link-text">log out</a>
</div>
</nav>
</div>
<!-----------------------------mainsection----------------------->
<div id="result-page">
<div class="result-container">
<form action="" method="post" name="form1">
<h3>
<?php echo $_REQUEST['r']; ?>
</h3>
<div class="semester-selection">
<p>Exam Result of </p>
<?php
$sname=$_REQUEST['r'];
$sem=$_REQUEST['s'];
// $_SESSION['sem']="sem_1";
// $sem="sem_1"
?>
<select name="semester" id="semester">
<option value="sem_1" >Semester 1</option>
<option value="sem_2"<?php if($sem=="sem_2"){
echo "selected";} ?>>Semester 2</option>
<!-- <option value="sem3">Semester 3</option> -->
</select>
<span class="get-btn-container"><input type="submit" value="Get Result" class="get-btn" name="getres"> </span>
</form>
</div>
<?php
$con=mysqli_connect("localhost","root","","result_db");
if(!$con)
{
echo "could not connect";
}
// -------------------
if(isset($_REQUEST['getres']))
{
// $_SESSION['sem']=$_REQUEST['semester'];
// $sem=$_REQUEST['semester'];
header("location:student-result.php?r=".$sname."&s=".$_REQUEST['semester']);
}
$result=mysqli_query($con,"select * from ".$sem." where sname='".$sname."'");
while($row=mysqli_fetch_array($result))
{
?>
<?php
function grade($mark) {
if($mark>=95)
echo "S";
elseif($mark>=85&&$mark<95)
echo "A+";
elseif($mark>=75&&$mark<85)
echo "A";
elseif($mark>=65&&$mark<75)
echo "B+";
elseif($mark>=55&&$mark<65)
echo "B";
elseif($mark>=45&&$mark<55)
echo "C+";
elseif($mark>=35&&$mark<45)
echo "C";
else
echo "<span style='color:red' > Failed </span>";
}
?>
<div class="result-table-container">
<table class="result-table" >
<form action="" method="POST" name="form">
<tr>
<th>Subject</th>
<th>Marks obtained</th>
<th>Max.Marks</th>
<th>Grade</th>
</tr>
<tr>
<td class="sub">C++</td>
<td><input type="text" value="<?php echo $row['mark1'];?>" class="col-text-box" name="m1" readonly> </td>
<td><input type="text" value="100" class="col-text-box"readonly></td>
<td><p class="col-text"><?php grade($row['mark1']);?></p></td>
</tr>
<tr>
<td class="sub">Java</td>
<td><input type="text" value="<?php echo $row['mark2'];?>" class="col-text-box" name="m2" readonly></td>
<td><input type="text" value="100" class="col-text-box" readonly></td>
<td><p class="col-text"><?php grade($row['mark2']);?></p></td>
</tr>
<tr>
<td class="sub">Linux</td>
<td><input type="text" value="<?php echo $row['mark3'];?>" class="col-text-box" name="m3" readonly></td>
<td><input type="text" value="100" class="col-text-box" readonly></td>
<td><p class="col-text"><?php grade($row['mark3']);?></p></td>
</tr>
<tr>
<td class="sub">PHP</td>
<td><input type="text" value="<?php echo $row['mark4'];?>" class="col-text-box" name="m4" readonly ></td>
<td><input type="text" value="100" class="col-text-box" readonly></td>
<td><p class="col-text"><?php grade($row['mark4']);}?></p></td>
</tr>
</table>
</form>
</div>
</div>
</div>
<?php
}
?>
</body>
</html>