This repository has been archived by the owner on Aug 4, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
95 lines (67 loc) · 1.62 KB
/
index.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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
<?php
include($_SERVER['DOCUMENT_ROOT'].'/php/user_session_check.php'); //checks if user is logged on
$permission_status = 0;
foreach ($_SESSION['permissions'] as $item) {
if ($item['position'] == "teacher" OR $item['position'] == "sso_admin") {
$permission_status = 1;
}
}
if ($permission_status == 1) {
include ($_SERVER['DOCUMENT_ROOT'] . "/php/prepare_sql.php");
?>
<html>
<title>HomePage</title> <!-- Name of site page in tab -->
<head>
<?php include ($_SERVER['DOCUMENT_ROOT'] . "/includes/head_includes.php"); ?>
<?php include ($_SERVER['DOCUMENT_ROOT'] . "/javascript/color.php"); ?>
</head>
<body>
<p>
<?php
include('includes/toolbar.php');
include('includes/optionsTab.php');
?>
<center>
<div class="subtitle">
<p id="homeTitle" class="subtitle_title">
HomePage
</p>
</div>
<div class="content">
<p id="home">
<?php
$sql = "SELECT * FROM homePage";
$homePage = array_prepare_select($sql, $pdo, []);
?>
<div class="messageTitle1">
<?php
echo $homePage[0]['title'];
?>
<div id="message">
<?php
echo $homePage[0]['content'];
?>
</div>
</div>
<div class="messageTitle2">
<?php
echo $homePage[1]['title'];
?>
<div id="message">
<?php
echo $homePage[1]['content'];
?>
</div>
</div>
</p>
</div>
</center>
</p>
</body>
</html>
<?php
}
else {
echo "NO PERMISSION";
}
?>