-
Notifications
You must be signed in to change notification settings - Fork 22
/
transfer_stu_year.php
72 lines (46 loc) · 3.98 KB
/
transfer_stu_year.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
<?php
include './Database/Controler.php';
include 'role.php';
if($_SESSION["role"]==1)
{
?>
<h2>Year Vise Transformation of Student</h2>
</div>
</div>
<div class="row">
<div class="col-md-12">
<div class="panel panel-default">
<div class="panel-body">
<div class="row">
<center>
<h3>*Please start transfering students from forth year then third year and so on...</h3>
<form method="post" role="form" enctype="multipart/form-data">
<div class="col-md-12"><div class="row"><div class="panel-body">
<center>
<button type="submit" id="f_to_f" name="f_to_f" class="btn btn-lg" style="width:60%;background-color:#000000;color: #cccc00;" >
<b style="font-size: larger"><i class="fa fa-certificate"></i> Fourth Year to Fifth Year <i class="fa fa-certificate"></i></b>
</button><br><br>
<button type="submit" id="t_to_f_msc" name="t_to_f_msc" class="btn btn-lg" style="width:60%;background-color:#000000;color: #cccc00;" >
<b style="font-size: larger"><i class="fa fa-certificate"></i> Third Year to Fourth Year(M.Sc. IT) <i class="fa fa-certificate"></i></b>
</button><br><br>
<button type="submit" id="t_to_f_mba" name="t_to_f_mba" class="btn btn-lg" style="width:60%;background-color:#000000;color: #cccc00;" >
<b style="font-size: larger"><i class="fa fa-certificate"></i> Third Year to Fourth Year(MBA) <i class="fa fa-certificate"></i></b>
</button><br><br>
<button type="submit" id="s_to_t" name="s_to_t" class="btn btn-lg" style="width:60%;background-color:#000000;color: #cccc00;" >
<b style="font-size: larger"><i class="fa fa-certificate"></i> Second Year to Third Year <i class="fa fa-certificate"></i></b>
</button><br><br>
<button type="submit" id="f_to_s" name="f_to_s" class="btn btn-lg" style="width:60%;background-color:#000000;color: #cccc00;" >
<b style="font-size: larger"><i class="fa fa-certificate"></i> First Year to Second Year <i class="fa fa-certificate"></i></b>
</button><br><br>
</form> </center>
<?php
}
else {
?>
<div class="row">
<div class="col-md-12"></div>
<img src="img/ad.jpg">
<?php
}
include 'footer.php';
?>