-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
49 lines (42 loc) · 1.25 KB
/
index.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
<!doctype html>
<html>
<head>
<a href="/">Home</a>
<title>Home</title>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link href="https://unpkg.com/bamboo.css" rel="stylesheet">
</head>
<body>
<h1>Movie Website Database</h1>
<p>This website contains movie information including the actors, and user reviews.</p>
<hr>
<h2>General Search</h2>
<form action="./search.php" method="get">
Actor: <input type="text" name="actor"><br>
Movie: <input type="text" name="movie"><br>
<br><input type="submit" value="Search">
</form>
<br>
<h2>Search Movie by ID</h2>
<p>If you know the particular movie id, search here:</p>
<form action="./movie.php" method="get">
<input type="text" name="id"><br>
<input type="submit" value="Search">
</form>
<br>
<h2>Search Actor by ID</h2>
<p>If you know the particular actor id, search here:</p>
<form action="./actor.php" method="get">
<input type="text" name="id"><br>
<input type="submit" value="Search">
</form>
<br>
<h2>Search Review by ID</h2>
<p>If you know the particular review id, search here:</p>
<form action="./review.php" method="get">
<input type="text" name="id"><br>
<input type="submit" value="Search">
</form>
</body>
</html>