-
Notifications
You must be signed in to change notification settings - Fork 0
/
admin_check_theory_exam.php
81 lines (55 loc) · 2.62 KB
/
admin_check_theory_exam.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
<?php
include_once 'dbConnection.php';
require_once 'library.php';
?>
<div class="row" style="background-color:#fff; padding-top:10px">
<div class="col-md-3"></div><div class="col-md-6">
<form class="form-horizontal" name="form" action="admin_check_theory_exam_process.php" method="POST" enctype="multipart/form-data">
<div class="w3-row w3-padding">
<span class="title1" style="font-size:30px;"><b><u>Student Exam List(Theory Exam)</u></b></span><br /><br />
<h4>
<?php
if(isset($_SESSION['err_msg']))
{
?>
<div class="alert alert-danger">
<span><center>
<?php echo $_SESSION['err_msg'];
unset($_SESSION['err_msg']);
?>
</center></span>
</div>
<?php
} else
if(isset($_SESSION['success_msg']))
{
?>
<div class="alert alert-success">
<span><center>
<?php echo $_SESSION['success_msg'];
unset($_SESSION['success_msg']);
?>
</center></span>
</div>
<?php
}?></h4>
</div>
<fieldset>
<!-- Text input-->
<div class="form-group">
<label class="col-md-4 control-label" id="exam_code" for="exam_code">Exam Code:</label>
<div class="col-md-8">
<input id="exam_code" name="exam_code" placeholder="Enter exam code" class="form-control input-md" type="text" />
</div>
</div>
<!-- Button -->
<div class="form-group">
<label class="col-md-4 control-label" for=""></label>
<div class="col-md-8" align="left">
<button type="submit" class="btn btn-primary">Activate</button>
<br>
</div>
</div>
</fieldset>
</form>
</div>