-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtemplate2.4
More file actions
69 lines (66 loc) · 2.43 KB
/
template2.4
File metadata and controls
69 lines (66 loc) · 2.43 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
60
61
62
63
64
65
66
67
68
69
<form action="compare.php" method="post">
<fieldset>
</br>
<div>
First state?
<select name="nameselect">
<option value=""></option>
<?php foreach ($positions as $position): ?>
<option value="<?=$position['name']?>"> <?=$position["name"]?></option>
<?php endforeach ?>
</select>
Second state?
<select name="nameselect2">
<option value=""></option>
<?php foreach ($positions as $position): ?>
<option value="<?=$position['name']?>"> <?=$position["name"]?></option>
<?php endforeach ?>
</select>
</br>
</br>
<div>
Population Importance:
<input value=5 name="ipopulation" placeholder="0-10" type="text"/>
</div>
Which is better?
</br>
<input type="radio" name="opopulation" value="high" checked>High
<input type="radio" name="opopulation" value="low">Low
</br>
</br>
<div>
Area Importance:
<input value=5 name="iarea" placeholder="0-10" type="text"/>
</div>
Which is better?
</br>
<input type="radio" name="oarea" value="high" checked>High
<input type="radio" name="oarea" value="low">Low
</br>
</br>
<div>
Average Temperature Importance:
<input value=5 name="itemp" placeholder="0-10" type="text"/>
</div>
Which is better?
</br>
<input type="radio" name="otemp" value="high" checked>High
<input type="radio" name="otemp" value="low">Low
</br>
<div>
Income Importance:
<input value=5 name="iincome" placeholder="0-10" type="text"/>
</div>
Which is better?
</br>
<input type="radio" name="oincome" value="high" checked>High
<input type="radio" name="oincome" value="low">Low
</br>
</br>
</div>
</br>
<div>
<button type="submit">Compare!</button>
</div>
</fieldset>
</form>