-
Notifications
You must be signed in to change notification settings - Fork 0
/
movies.php
94 lines (86 loc) · 4.27 KB
/
movies.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
<!DOCTYPE html>
<html>
<head>
<title>MCU : Movies</title>
<meta charset="utf-8"/>
<link rel="stylesheet" href="css/common.css"/>
<link rel="stylesheet" href="css/movies.css"/>
<link rel="icon" href="data/header_logo.png" type="image/x-icon">
<script src="js/jquery.js"></script>
<script src="js/movies.js"></script>
</head>
<body>
<div class="display-error">
<img src="data/background.jpg" height="100%"/>
</div>
<!-- Navigation Bar -->
<div class="nav-bar">
<a href="characters.php">Characters</a>
<a href="movies.php">Movies</a>
<a href="index.html" style="padding-top: 0px; padding-bottom: 0px;"><img class="logo" src="data/Marvel-Logo.png" width=150px;/></a>
<a href="tvshows.php">TV Shows</a>
<a href="history.html">History</a>
</div>
<!-- Search And drop down-->
<div class="search-tools">
<input type="search" class="search" placeholder="Search your movie here" onkeydown="refreshContent();"/>
<label class="search-label">
<select id="sort-by" style=" height: 50px;
padding:0px;
margin:0px;
margin-left:30px;
border: none;
background-color:#111111;
color: #959595;
font-family: 'Roboto Condensed', sans-serif;
font-size: 20px;
padding: 10px;" onchange="refreshContent();">
<option value="name">Name</option>
<option value="rel_year">Release Time</option>
<option value="runtime">Runtime</option>
</select>
</div>
<!--Card View characters-->
<div class="wrap">
<?php
include_once 'php_bin/moviesCardContent.php';
?>
</div>
<!-- footer -->
<footer>
<span>
<svg viewBox="0 0 36 52" xmlns="http://www.w3.org/2000/svg"><rect fill="#EC1D24" width="100%" height="100%"></rect><path fill="#FEFEFE" d="M31.5 48V4H21.291l-3.64 22.735L14.102 4H4v44h8V26.792L15.577 48h4.229l3.568-21.208V48z"></path></svg>
</span>
<ul>
<li><a id="icon" href="http://facebook.com/marvel"><img src="data/facebook.png"></a></li>
<li><a id="icon" href="http://twitter.com/marvel"><img src="data/twitter.png"></a></li>
<li><a id="icon"href="http://instagram.com/marvel"><img src="data/instagram.png"></a></li>
<hr>
<li><a href="https://disneytermsofuse.com/">Terms of Use</a></li>
<li><a href="https://privacy.thewaltdisneycompany.com/en/">Privacy Policy</a></li>
<li><a href="https://privacy.thewaltdisneycompany.com/en/current-privacy-policy/your-california-privacy-rights/">Your California Privacy Rights</a></li>
<li><a href="https://www.marvel.com/corporate/license_tou">License Agreement</a></li>
<li><a href="http://preferences-mgr.truste.com/?pid=disney01&aid=marvel01&type=marvel">Interest-Based Ads</a></li>
<li><a href="https://www.marvel.com/corporate/insider_terms">Marvel Insider Terms</a></li>
<li>©2019 MARVEL</li>
<hr>
<li><p>Developed by <a href="https://www.github.com/AdarshRevankar">Adarsh Revankar</a> & <a href="https://www.github.com/Akshaya520">Akshaya M</a></p></li>
</ul>
</footer>
</body>
<script>
function refreshContent(){
var searchString = document.getElementsByClassName('search')[0].value;
var selecter = document.getElementById('sort-by');
var sortBy = selecter.options[selecter.selectedIndex].value;
$.ajax({
type: "GET",
url: "php_bin/moviesCardContent.php",
data: "search="+searchString+"&sort="+sortBy,
success: function(result) {
$(".wrap").html(result);
}
});
}
</script>
</html>