-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoverview.php
69 lines (62 loc) · 2.28 KB
/
overview.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
<?php
include "validate_session.php";
?>
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>GTMovie</title>
<link rel="stylesheet" href="static/css/bootstrap.min.css">
<link rel="stylesheet" href="static/css/font-awesome.min.css">
<link rel="stylesheet" href="static/css/react-bootstrap-switch.min.css">
<link href="http://fonts.googleapis.com/css?family=Indie+Flower" rel="stylesheet" type="text/css">
<link rel="stylesheet" href="static/css/style.css">
</head>
<body>
<!--[if lt IE 8]>
<p class="browserupgrade">You are using an <strong>outdated</strong> browser. Please <a href="http://browserhappy.com/">upgrade your browser</a> to improve your experience.</p>
<![endif]-->
<div class="container max-width-lg">
<div class="align-ctr">
<a href="./logout.php" class="btn btn-link font-sz-md">Logout</a>
</div>
<?php // put your HTML stuff here
include 'db.php';
$movieId = $_GET['movieId'];
$movie = fetchMovieById($movieId);
// TODO: Fetch Movie Casts
$casts = array('Robert Downey Jr.',
'Emma Watson',
'Natalie Portman',
'Hugh Jackman',
'Amber Heard',
'Johnny Depp'
);
$casts = array_slice($casts,
0,
count($casts) < 5 ? count($casts) : 5);
if (is_null($movie)) {
RedirectJS('./nowplaying.php');
}
echo '
<h1>' . $movie['Title'] . '</h1>
<p><em>Synopsis</em></p>
<p>
' . $movie['Synopsis'] . '
</p>
<p><em>Cast</em></p>
';
array_map(function($cast) {
echo '<p class="text-primary">' . $cast . '</p>';
}, $casts);
?>
<div class="align-ctr">
<a href="./movie.php?movieId=<?php echo $movieId ?>" class="btn btn-default btn-lg">
Back
</a>
</div>
</div>
</body>
</html>