-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathMovieListings.html
More file actions
102 lines (45 loc) · 1.17 KB
/
MovieListings.html
File metadata and controls
102 lines (45 loc) · 1.17 KB
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
<?php
include "dbConfig.php";
?>
<html>
<head>
<title>
Upcoming Movie Showings
</title>
</head>
<h3>Movie Listings</h3>
<br>
<!-- <form action="cmps460server.cacs.louisiana.edu/rma5149/AcctChQuery.php" method="POST"> -->
Select a Complex
<select name="complex_select_menu">
<option value="all"></option>
<option value="complex1">Complex 1</option>
<option value="complex2">Complex 2</option>
</select>
<br>
<br>
Select a Movie
<select name="movie_select_menu">
<option value="all">all</option>
<option value="thor">Thor</option>
<option value="avengers">The Avengers</option>
<option value="buttsekssisters">Buttseks Sisters 9</option>
</select>
<br>
<br>
Select a Day
<select name="day_select_menu">
<option value="today">Today</option>
<option value="today+1">Today + 1</option>
<option value="today+2">Today + 2</option>
<option value="today+3">Today + 3</option>
<option value="today+4">Today + 4</option>
<option value="today+5">Today + 5</option>
<option value="today+6">Today + 6</option>
</select>
<br>
<br>
<button type="button">Submit</button>
</form>
</body>
</html>