-
Notifications
You must be signed in to change notification settings - Fork 23
/
transfer_stu_sem.php
53 lines (47 loc) · 2.37 KB
/
transfer_stu_sem.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
<?php
include './Database/Controler.php';
include 'role.php';
if($_SESSION["role"]==1)
{
?>
<h2>Semester 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>
<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="fs_to_ss" name="fs_to_ss" class="btn btn-lg" style="width:60%;background-color:#000000;color: #cccc00;" >
<b style="font-size: larger"><i class="fa fa-certificate"></i> First Semster to Second Semster <i class="fa fa-certificate"></i></b>
</button><br><br>
<button type="submit" id="ts_to_fs" name="ts_to_fs" class="btn btn-lg" style="width:60%;background-color:#000000;color: #cccc00;" >
<b style="font-size: larger"><i class="fa fa-certificate"></i> Third Semster to Fourth Semster <i class="fa fa-certificate"></i></b>
</button><br><br>
<button type="submit" id="fis_to_ss" name="fis_to_ss" class="btn btn-lg" style="width:60%;background-color:#000000;color: #cccc00;" >
<b style="font-size: larger"><i class="fa fa-certificate"></i> Fifth Semster to Sixth Semster <i class="fa fa-certificate"></i></b>
</button><br><br>
<button type="submit" id="ss_to_es" name="ss_to_es" class="btn btn-lg" style="width:60%;background-color:#000000;color: #cccc00;" >
<b style="font-size: larger"><i class="fa fa-certificate"></i> Seventh Semster to Eighth Semster <i class="fa fa-certificate"></i></b>
</button><br><br>
<button type="submit" id="ns_to_ts" name="ns_to_ts" class="btn btn-lg" style="width:60%;background-color:#000000;color: #cccc00;" >
<b style="font-size: larger"><i class="fa fa-certificate"></i> Ninth Semster to Tenth Semster <i class="fa fa-certificate"></i></b>
</button><br>
</form> </center>
<?php
}
else {
?>
<div class="row">
<div class="col-md-12"></div>
<img src="img/ad.jpg">
<?php
}
include 'footer.php';
?>