-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathactions_view.php
More file actions
39 lines (28 loc) · 908 Bytes
/
Copy pathactions_view.php
File metadata and controls
39 lines (28 loc) · 908 Bytes
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
<?php
$filePath = $_SERVER['PHP_SELF'];
$split_path = explode('/',$filePath);
$file_name = end($split_path);
?>
<div class="mb-3 mt-3">
<a class="btn btn-primary" href="index.php">Home</a>
</div>
<?php if($file_name != 'student_register.php'){ ?>
<div class="mb-3 mt-3">
<a class="btn btn-primary" href="student_register.php">Add New Student</a>
</div>
<?php }?>
<div class="mb-3 mt-3">
<a class="btn btn-primary" href="students_list.php">Students List</a>
</div>
<div class="mb-3 mt-3">
<a class="btn btn-primary" href="course.php">Add New Course</a>
</div>
<div class="mb-3 mt-3">
<a class="btn btn-primary" href="course_list.php">Courses List</a>
</div>
<div class="mb-3 mt-3">
<a class="btn btn-primary" href="student_subscribe.php">Student Subscribe</a>
</div>
<div class="mb-3 mt-3">
<a class="btn btn-primary" href="student_report.php">Student Report</a>
</div>