-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstu_score.php
152 lines (137 loc) · 4.79 KB
/
stu_score.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
<?php
error_reporting(E_ALL);
ini_set('display_errors', '1');
require_once ('Auth_stu.php');
session_start();
$auth = new Auth_stu();
if (!isset($_SESSION['user_id']))
{
//Not logged in, send to login page.
header( 'Location: login.php' );
}
else
{
//Check we have the right user
$logged_in = $auth->checkSession();
if(empty($logged_in)){
//Bad session, ask to login
$auth->logout();
header( 'Location: login.php' );
}
else
{
//User is logged in, show the page
?>
<!DOCTYPE html>
<html>
<head>
<title>ACES : HOME</title>
<!-- Include the bootstrap stylesheets -->
<link rel="stylesheet" href="bootstrapnew.css"/>
</head>
<body>
<!-- Navbar
================================================== -->
<div class="navbar navbar-fixed-top">
<div class="navbar-inner">
<div class="container">
<a class="btn btn-navbar" data-toggle="collapse" data-target=".nav-collapse">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</a>
<a class="brand" href="http://www.amrita.edu/">AMRITA</a>
<div class="nav-collapse" id="main-menu">
<ul class="drop" id="main-menu-left">
<li><a onclick="pageTracker._link(this.href); return false;" href="http://news.bootswatch.com">News</a></li>
<li class="dropdown" id="score-menu">
<a class="dropdown-toggle" data-toggle="" href="#">View Scores<b class="caret"></b></a>
<ul id="take_test" class="dropdown-toggle" >
<li><a href="/code_score.php">Code</a></li>
<li><a href="/stu_score.php">MCQs</a></li>
<li><a href="/query_score.php">Query</a></li>
</ul>
</li>
<li class="dropdown" id="test-menu">
<a class="dropdown-toggle" data-toggle="" href="#">Test Offered <b class="caret"></b></a>
<ul id="take_test" class="dropdown-toggle" >
<li><a href="/take_test_code.php">Test Code</a></li>
<li><a href="/select_test.php">MCQs</a></li>
<li><a href="/take_test_sql.php">Test Query</a></li>
</ul>
</li>
</ul>
</li>
</ul>
<ul class="nav pull-right" id="main-menu-right">
<li><a rel="tooltip" href="#"><?php echo date("d.m.Y") ;?> <i class="icon-share-alt"></i></a></li>
<li><a rel="tooltip" href="#">Welcome<?php echo $_SESSION['name'] ;?> <i class="icon-share-alt"></i></a></li>
<li><a rel="tooltip" href="/logout_stu.php">Logout <i class="icon-share-alt"></i></a></li>
</ul>
</div>
</div>
</div>
</div>
<div class="container">
<div class="container">
<p> </p>
<h1 style="font-size:46px" align="center" > </h1>
<h1 style="font-size:46px" align="center" > </h1>
<h1 style="font-size:46px" align="center" >ACES</h1>
<h4 align="center"> Automated Code Evaluation System</h4>
<p></p>
<h6 align="left">AMRITA SCHOOL OF ENGINEERING</h6>
<h6 align="left" >COIMBATORE <small></h6>
<!-- Forms
================================================== -->
<section id="forms">
<div class="page-header">
<h1> Tests Available</h1>
</div>
<div class="row">
<div class="span10 offset1">
<form class="form-horizontal well" action="student_home.php" method="post" enctype="multipart/form-data">
<fieldset>
<legend> Gradebook</legend>
<table class="table">
<tr>
<th>Test_ID</th>
<th>Your score</th>
</tr>
<?php
$auth->connect();
$res=mysql_query("select * from stu,score where score.stu_id=stu.id and score.stu_id='$_SESSION[user_id]' ");
while($row=mysql_fetch_assoc($res))
{
?>
<tr>
<td> <?php echo $row['test_id']?> </td>
<td> <?php echo $row['stu_score']?></td>
</tr>
<?php
}
?>
</table>
<div class="form-actions">
<input type="submit" class="btn btn-primary" name="submit" value="Back to home"/>
</div>
</fieldset>
</form>
</div>
</div>
</section>
<!-- Footer
================================================== -->
<hr>
<footer id="footer">
<p class="pull-right"><a href="#">Back to top</a></p>
<div class="links"></div>
Made by <a href="http://www.amrita.edu">Amrita</a>. Contact him <a href="mailto:amrita.edu">hello@admin_asec</a>.<br/>
Based on <a target="_blank" href="http://twitter.github.com/bootstrap/">Bootstrap</a>. Icons from <a target="_blank" href="http://glyphicons.com/">Glyphicons</a>. Web fonts from <a target="_blank" href="http://www.google.com/webfonts">Google</a>.</p>
</footer>
</body>
</html>
<?php
}
}
?>