-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgraphTest.html
More file actions
59 lines (56 loc) · 2.16 KB
/
graphTest.html
File metadata and controls
59 lines (56 loc) · 2.16 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
47
48
49
50
51
52
53
54
55
56
57
58
59
<!DOCTYPE html>
<html>
<head>
<title></title>
</head>
<body>
<table style="column-count:3" width="100%">
<tr><td width="15%" valign="top">
<h3>Gallup Polls Candidate Popularity</h3>
<!--<img src="graph.php();?>-->
<br />
<!--<select action="graph.php" method="post">
<option value="Romney"; name="name">Mitt Romney</option>
<option value="Gingrich"; name="name">Newt Gingrich</option>
<option value="Santorum"; name="name">Rich Santorum</option>
<option value="Paul"; name="name">Ron Paul</option>
</select>-->
<form name="input" action="graphTest.php" method="post" target="graph">
<b>Select the candidates whose graphs you would like to see.</b><br />
<input type="checkbox" name="vehicle[]" value="Romney" /> Mitt Romney<br />
<input type="checkbox" name="vehicle[]" value="Gingrich" /> Newt Gingrich<br />
<input type="checkbox" name="vehicle[]" value="Santorum" /> Rick Santorum<br />
<input type="checkbox" name="vehicle[]" value="Paul" /> Ron Paul<br />
<input type="submit" value="Graph" />
<!--<a href="graphTest2.php" target="graph">Scrabble</a>-->
</form>
</br></br>
<!--<br /><b>Type in and Submit the Candidate's Last Name </b>
<form name="input" action="graph.php" method="get">
Candidate: <input type="text" name="user" />
<input type="submit" value="Submit" />
</form>-->
<br />
<br />
<a style="text-decoration: none; color: green" href="http://www.ebrueggeman.com/phpgraphlib">PHPGraphLib</a>
<br />
<!--<image src="graphTest2.php" alt="graph image">-->
</td>
<td width="70%" valign="middle">
<iframe src="" name="graph" width="100%" height="900px" frameborder="0"></iframe>
</td>
<td width="15%" valign="top">
<h3>Campaign Financing</h3>
<br />
<form name="input" action="graphTest2.php" method="post" target="graph">
<b>Select the candidates whose graphs you would like to see.</b><br />
<input type="checkbox" name="vehicle[]" value="Romney" /> Mitt Romney<br />
<input type="checkbox" name="vehicle[]" value="Gingrich" /> Newt Gingrich<br />
<input type="checkbox" name="vehicle[]" value="Santorum" /> Rick Santorum<br />
<input type="checkbox" name="vehicle[]" value="Paul" /> Ron Paul<br />
<input type="submit" value="Graph" />
</form>
</td>
</tr></table>
</body>
</html>