-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.php
More file actions
46 lines (46 loc) · 2.32 KB
/
index.php
File metadata and controls
46 lines (46 loc) · 2.32 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
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.2.6/jquery.min.js"></script>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<form action="display.php" method="GET" id="compare">
Select up to five words to compare:<br />
<input type="text" name="term" id="term1"><br />
<input type="text" name="term1" id="term2"><br />
<input type="text" name="term2" id="term3"><br />
<input type="text" name="term3" id="term4"><br />
<input type="text" name="term4" id="term5"><br />
<input type="submit">
</form>
<!--What would you like to do?<br />
<a href="#" onclick="$('#compare').toggle();">Compare</a><br />
<form action="compare.php" method="GET" id="compare" style="display:none;">
Select up to five words to compare:<br />
<input type="text" name="term1" id="term1"><br />
<input type="text" name="term2" id="term2"><br />
<input type="text" name="term3" id="term3"><br />
<input type="text" name="term4" id="term4"><br />
<input type="text" name="term5" id="term5"><br />
<input type="submit">
</form>
<a href="#" onclick="$('#positiveornegative').toggle();">Posititve vs. Negative</a><br />
<form action="search.php" method="GET" id="positiveornegative" style="display:none;">
Search Term(s): <input type="text" name="term" id="term"><br />
Refine Results: <input type="radio" name="positive" value="Positive Results"> Show only positive tweets. <input type="radio" name="negative" value="Negative Results"> Show only negative tweets.
<Br />
<input type="submit">
</form>
</html>
<a href="#" onclick="$('#location').toggle();">Search by Location</a><br />
<form action="location.php" method="GET" id="location" style="display:none;">
Search Term(s): <input type="text" name="term" id="term"><br />
Zip Code: <input type="text" name="zip" id="zip"><br />
Radius (in miles): <input type="input" name="radius" id="radius"><br />
Country: <select id="country" name="country"><option>USA</option><option>UK</option></select>
<Br />
<input type="submit">
</form>
<a href="#" onclick="$('#questions').toggle();">Questions</a><br />
<form action="question.php" method="GET" id="questions" style="display:none;">
Search Term(s): <input type="text" name="term" id="term"><br />
<input type="submit">
</form>-->