-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathindex.php
50 lines (31 loc) · 1.52 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
50
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Web Scrape Yellow Pages</title>
<link href="css/style.css" rel="stylesheet" type="text/css">
</head>
<body>
<div><h1 class="header">Yellow Pages Web Scrape</h1></div>
<!--Sets the form to send the information to the create-csv.php script -->
<form action="scripts/create-csv.php" method="post" class="form-wrapper cf">
<input type="text" id="keyword" name="keyword" placeholder="Keywords" required>
<button type="submit" name="submit" value="search">Search</button>
<br><br><br><br><br><br>
<input type="text" style="width: 150px;height: 20px;padding: 10px 5px 10px 5px;
font: bold 15px 'lucida sans', 'trebuchet MS', 'Tahoma';border: 0;
background: #eee;-moz-border-radius: 3px 3px 3px 3px;-webkit-border-radius: 3px 3px 3px 3px;
border-radius: 3px 3px 3px 3px;" id="city" name="city" placeholder="City" required>
<?php include "scripts/states.php";?>
<span>
<label for="state" style="font: bold 15px 'lucida sans', 'trebuchet MS', 'Tahoma';
vertical-align:basline;">State</label>
<select name="state" id="state" style="width:auto;height: auto;padding: 10px 5px 10px 5px;
font: bold 15px 'lucida sans', 'trebuchet MS', 'Tahoma';-moz-border-radius: 3px 3px 3px 3px;-webkit-border-radius: 3px 3px 3px 3px;
border-radius: 3px 3px 3px 3px;" required>
<?php echo StateDropdown('New Hampshire', 'name'); ?>
</select>
</span>
</form>
</body>
</html>