-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathsearch.php
67 lines (58 loc) · 2.1 KB
/
search.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
<?php
session_start();
/*
Fill in phpVariables with values from Database later.
*/
require_once("config.php");
?>
<html>
<head>
<title> <?= $webTitle; ?> </title>
<?php $page = "search" //setting page for include ?>
<META HTTP-EQUIV="Pragma" CONTENT="no-cache">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Calling JS -->
<!-- Latest compiled and minified Jquery JavaScript -->
<script src="js/jquery.min.js"></script>
<script src="js/jquery-ui.min.js"></script>
<script src="js/DataTable/datatables.min.js"></script>
<script src="js/DataTable/dataTables.bootstrap4.min.js"></script>
<script src="js/bootstrap/bootstrap.min.js"></script>
<script src="js/tether/tether.min.js"></script>
<script src="js/morris/raphael.min.js"></script>
<script src="js/morris/morris.min.js"></script>
<!-- Custom JS -->
<script src="js/Navjs.js"></script>
<!-- End Of JS -->
<!-- Bootstrap 4, Tether, Fontawesome, Morris -->
<link rel="stylesheet" href="css/jquery-ui.min.css">
<link rel="stylesheet" href="css/DataTable/datatables.min.css">
<link rel="stylesheet" href="css/tether/tether.min.css">
<link rel="stylesheet" href="css/bootstrap/bootstrap.min.css">
<link rel="stylesheet" href="css/fontawesome/font-awesome.min.css">
<link rel="stylesheet" href="css/morris/morris.css">
<!-- Custom CSS -->
<link rel="stylesheet" href="css/circle.css">
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="css/social.css">
</head>
<body>
<?php @include_once "views/social.php"; ?>
<div class="container" style="width:95%;">
<div class="row">
<div class="wrapper">
<?php include_once "views/nav/index.php" ?>
<?php include_once "views/$page/search-index.php" ?>
<div class="display-search"></div>
</div>
</div>
</div>
<script src="js/search/search-ajax.js"></script>
<script>
$(document).ready(function(){
$('[data-toggle="tooltip"]').tooltip();
});
</script>
</body>
</html>