-
Notifications
You must be signed in to change notification settings - Fork 32
/
result.php
executable file
·73 lines (65 loc) · 1.5 KB
/
result.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
<head>
<title>Movie Theatres Search</title>
<link href="css/style.css" rel="stylesheet" type="text/css" />
<link rel="shortcut icon" type="image/x-icon" href="favicon.ico" />
<script type="text/javascript" src="js/jquery.js" ></script>
<script type="text/javascript">
$(document).ready(function()
{
$('.search').keyup(function()
{
var location =$(this).val();
var dataString = 'location='+ location;
if(location=='')
{
$('#display').hide();
}
else
{
$.ajax({
type: "POST",
url: "search.php",
data: dataString,
cache: false,
success: function(html)
{
$("#display").html(html).show();
}
});
}
return false;
});
$("#search_result").live("click",function()
{
var username=$(this).html();
$(".search").val(username);
$("#display").hide();
});
})
</script>
</head>
<?php
include('db/db.php');
//Database connection selection
$db=new db();
$db->db_connect();
$db->db_select();
?>
<body>
<div class="bar">
</div>
<img src="images/logo.png" style="margin-left:200px">
<center>
<div class="Quote" style="margin-top:70px">
<h1>Discover Great <b>Theatres</b> to Watch around you</h1>
</div>
</center>
<div style="margin-left:440px">
<form class="form-wrapper cf">
<input type="text" placeholder="Search Location..." name="location" class="search" required>
<button type="submit">Search</button>
<div id="display"></div>
</form>
</div>
<center><span style="color:white;">Note: please search by location name</span></center>
</body>