-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathadmin.php
More file actions
executable file
·130 lines (108 loc) · 4.86 KB
/
admin.php
File metadata and controls
executable file
·130 lines (108 loc) · 4.86 KB
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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
<!DOCTYPE html>
<html lang="en">
<?php
require('connect.php');
if(empty($_SESSION)) // if the session not yet started
session_start();
$status = $_SESSION['status'];
$user = $_SESSION['user'];
if($status<2)
{
echo '<script language="javascript">';
echo 'alert("You do not have high enough permissions")';
echo '</script>';
header("Location:login.php");
}
?>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="">
<meta name="author" content="">
<title>Admin - SMIPO</title>
<!-- Bootstrap Core CSS -->
<link href="css/bootstrap.min.css" rel="stylesheet">
<!-- Custom CSS -->
<link href="css/smipo.css" rel="stylesheet">
<!-- Fonts -->
<link href="http://fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,600italic,700italic,800italic,400,300,600,700,800" rel="stylesheet" type="text/css">
<link href="http://fonts.googleapis.com/css?family=Josefin+Slab:100,300,400,600,700,100italic,300italic,400italic,600italic,700italic" rel="stylesheet" type="text/css">
<!-- Javascript for Validation -->
<!-- Nothing yet for Validation -->
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
<script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<?php require_once("navigation.php"); ?>
<div class="container">
<div class="row">
<div class="box">
<div class="col-lg-12">
<hr>
<h2 class="intro-text text-center">
Search for Members
</h2>
</hr>
<p>
<form name="search_user" id="search_user" action="usersearch.php" method="post">
<center>
<table class="table-condensed">
<tr>
<?php
$sql="SELECT username FROM members";
$result = mysql_query($sql);
echo "<select class='form-control input-lg' id='username' name='username' value=''>Member Name"; // list box select
while ($row = mysql_fetch_array($result)) {
echo '<option value="'.$row['username'].'">'.$row['username'].'</option>';
}
echo "</select";
?>
</tr>
<!-- <tr>
<td>First Name :</td>
<td><input type="text" width="30" name="firstname" id="firstname" onblur="validateFirst();"/></td>
<td id="firstname-err"></td>
</tr>
<tr>
<td>Last Name :</td>
<td><input type="text" width="30" name="lastname" id="lastname" onblur="validateLast();"/></td>
<td id="lastname-err"></td>
</tr>
--> <tr>
<td id="search-err">
<?php
echo $_SESSION['searchError'];
?>
</td>
</tr>
</table>
<br />
<button name="search_user" type="submit" onclick="validateAll()" formmethod="post">Search</button>
</center>
</form>
</p>
</div>
</div>
</div>
</div>
<!-- /.container -->
<footer>
<div class="container">
<div class="row">
<div class="col-lg-12 text-center">
<p>Copyright © Radford SMIPO 2016</p>
</div>
</div>
</div>
</footer>
<!-- jQuery -->
<script src="js/jquery.js"></script>
<!-- Bootstrap Core JavaScript -->
<script src="js/bootstrap.min.js"></script>
</body>
</html>