-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmap.php
More file actions
44 lines (38 loc) · 1.28 KB
/
Copy pathmap.php
File metadata and controls
44 lines (38 loc) · 1.28 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
<!DOCTYPE html>
<html>
<head>
<title>Map</title>
<link rel="stylesheet" href="css/styles.css">
</head>
<body>
<header>
<?php include "css/navbar.php"?>
</header>
<div id="wrapper">
<div id="form-container">
<h1>Election Results</h1>
<form action="results.php" method="GET">
<label for="States">Choose a state:</label>
<select id="st" name="st">
<option value=""></option>
<?php
$filename = "states.txt";
$states = file("states.txt");
foreach ($states as $state) {
echo "<option value='". $state ."'>". $state ."</option>";
}
?>
</select>
<label for="party">Choose a party:</label>
<select id="party" name="party">
<option value=""></option>
<option value="Democrat">Democrat</option>
<option value="Republican">Republican</option>
<option value="Independent">Independent</option>
</select>
<input type="submit" value="Submit">
</form>
</div>
</div>
</body>
</html>