-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathenrollment.php
35 lines (28 loc) · 1.07 KB
/
enrollment.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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="css/styles_header.css">
<link rel="stylesheet" href="css/styles_footer.css">
<link rel="stylesheet" href="css/navpannel.css">
<link rel="stylesheet" href="css/subnav.css">
<link rel="stylesheet" href="css/card.css">
<link rel="stylesheet" href="css/enrollment.css">
<script src="js/jquery-3.3.1.js"></script>
<script src="js/subnav.js" type="text/javascript"></script>
<script src="js/load_student_profile.js" type="text/javascript"></script>
<script src="js/load_enrollment.js" type="text/javascript"></script>
<script src="js/load_modules_to_student_profile.js" type="text/javascript"></script>
</head>
<body>
<?php include_once("inc/header.php"); ?>
<?php include_once("inc/navpannel.php");?>
<?php
$index=$_GET['index'];
include_once("inc/subnav.php");
?>
<input type="hidden" name="index" id="index" value=<?php echo $_GET['index']?>>
<div id="course" class="head"></div><br><br><br>
<div id="enrollmenttable"></div>
<?php include_once("inc/footer.php"); ?><br><br>
</body>
</html>