-
Notifications
You must be signed in to change notification settings - Fork 0
/
AVTDB.php
64 lines (45 loc) · 1.23 KB
/
AVTDB.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
<!DOCTYPE php>
<html>
<head>
<title> Add Vaccination to Database</title>
<style>
body, h{
font-family: courier new;
background-color: RGB(146,168,209);
}
table, th, td{
border: 1px solid black;
padding: 8px;
}
</style>
</head>
<body>
<?php
include 'connectdb.php';
session_start();
?>
<h1>Vaccine Information </h1>
<p> Please select the vaccination lot ID and the place of vaccination from the dropdown menus.</p>
<?php
echo 'OHIP: <input type="text" name="newOHIP" value="'.$_SESSION["OHIP"].'"><br><br>';
?>
<form action = "SVTDB.php" method = "post">
<label for = "LIDS"> Select a Lot ID #: </label>
<select name = "LIDS">
<option value = "201">201</option>
<option value = "69">69</option>
<option value = "111">111</option>
</select>
<br>
<label for = "POV"> Select a location: </label>
<select name = "POV">
<option value = "Shipped to Home">Shipped to Home</option>
<option value = "Methodist Church">Methodist Church</option>
<option value = "Hockey Arena">Hockey Arena</option>
</select>
Date of vaccination = <input type = "date" name = "newDate">
<br>
<input type = "submit" value = "submit">
</form>
</body>
</html>