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 pathsearchPage.php
103 lines (69 loc) · 2.13 KB
/
searchPage.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
96
97
98
99
100
101
102
103
<!DOCTYPE html>
<?php
/*
include($_SERVER['DOCUMENT_ROOT'].'/php/user_session_check.php'); //checks if user is logged on
$permission_status = 0;
foreach ($_SESSION['permissions'] as $item) {
//echo $item;
if ($item == "teacher" OR $item == "sso_admin") {
$permission_status = 1;
}
}
if ($permission_status == 1) {
$sql = "SELECT * FROM students ORDER BY last";
include ($_SERVER['DOCUMENT_ROOT'] . "/php/pal-sql.php");
foreach ($results as $item) {
$students[] = array ("stud_id" => $item['student_id'], "l_name" => $item['last'], "f_name" => $item['first']);
}
*/
include($_SERVER['DOCUMENT_ROOT'].'/php/user_session_check.php'); //checks if user is logged on
$permission_status = 0;
foreach ($_SESSION['permissions'] as $item) {
//echo $item;
if ($item['position'] == "teacher" OR $item['position'] == "sso_admin") {
$permission_status = 1;
}
}
if ($permission_status == 1) {
include ($_SERVER['DOCUMENT_ROOT'] . "/php/progress_functions.php");
include ($_SERVER['DOCUMENT_ROOT'] . "/php/prepare_sql.php");
?>
<html>
<title>Search</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="searchTitle" class="subtitle_title">
Search
</p>
<?php
include('search/livesearch.php');
?>
</div>
<div class="content">
<p id="searchPage">
<?php
$sql = "SELECT students.student_id, students.first_name, students.last_name FROM students";
$students = array_prepare_select ($sql, $pdo, []);
foreach ($students as $item) {
echo "<div id='student_names'><a class='S_names' href = 'student.php?stud_id=$item[student_id]'>" . $item['last_name'] .', '. $item['first_name'] . "</a></div>";
}
?>
</p>
</div>
</center>
</p>
</body>
</html>
<?php
}
?>