-
Notifications
You must be signed in to change notification settings - Fork 0
/
addShowingForm.php
61 lines (51 loc) · 1.18 KB
/
addShowingForm.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
<?php
//connect to database
require_once('database.php');
//pull unitID from the URL
$unitID = $_GET["unitID"];
//get unit information
$queryUnit = 'SELECT * FROM units
WHERE unitID = :unitID';
$statement1 = $db->prepare($queryUnit);
$statement1->bindValue(':unitID', $unitID);
$statement1->execute();
$unit = $statement1->fetch();
$address = $unit['address'];
$statement1->closeCursor();
?>
<!doctype html>
<html>
<head>
<title>Title</title>
<link rel="stylesheet" type="text/css" href="css/main.css" />
</head>
<body>
<div class="wrapper">
<nav>
<?php include_once('navigation.php')?>
</nav>
<header>
<h1>Add a New Showing</h1>
</header>
<main>
<h1><?php echo $address; ?></h1>
<form action="addShowing.php" method="post">
<table>
<tr>
<td>Date</td>
<td><input type="date" name="date"></td>
</tr>
<tr>
<td>Time</td>
<td><input type="time" name="time"></td>
</tr>
</table>
<input type="hidden" name="unitID" value="<?php echo $unitID; ?>">
<input type="submit" value="Add Showing">
</form>
</main>
<footer>
<?php include_once('footer.php')?>
</footer>
</body>
</html>