-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy pathcontact.php
executable file
·63 lines (51 loc) · 1.73 KB
/
contact.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
<?php
include('db/db.php');
include('frontend.php');
//Database connection selection
$db=new db();
$db->db_connect();
$db->db_select();
?>
<html>
<head>
<title>Searh Movie Trailers Online</title>
<link rel="stylesheet" href="modal.css">
<script src="js/jquery.js"></script>
<script src="http://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/js/bootstrap.min.js"></script>
<style type="text/css">
body{font-family: calibri;}
</style>
<link rel="shortcut icon" type="image/png" href="favicon.ico"/>
<link rel="stylesheet" type="text/css" href="style.css">
<script src="jquery-1.8.0.min.js"></script>
</head>
<body style="background:#eee">
<div class="bar">
</div>
<?php
include('header.php');
?>
<center style="margin-top:-10px">
<nav class="menu">
<ul class="active">
<li><a href="index.php">Home</a></li>
<li><a href="movies.php">Movies</a></li>
<li><a href="theatres.php">Theatres</a></li>
<li><a href="trailers.php">Trailers</a></li>
<li><a href="moibile-app.php">Mobile App</a></li>
<li style="float:right;margin-right:10px;">
<a class="toggle-nav" href="#">☰</a>
<input type="text" id="filter" style="padding:3px;width:250px;" placeholder="Search Movies.." ></li>
</ul>
</nav>
<br/><br/>
<div style="text-align:left;margin-left:200px">
<b>ADDRESS:</b><br/><br/>
S/O Vinayakarao 12-4-107<br/>
New Colony Palasa ,Palasa<br/>
KasiBugga Srikakulam<br/>
Andhra Pradesh,532222<br/>
</div>
</center>
</body>
</html>