-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpost2.php
More file actions
28 lines (28 loc) · 740 Bytes
/
post2.php
File metadata and controls
28 lines (28 loc) · 740 Bytes
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
<form action="index.php" form method="post">
<p>
Please choose all languages you currently know or
would like to learn in the next 12 months.
</p>
<p>
<label>
<input type="checkbox"
name="languages[]"
value="PHP" />
PHP
</label>
<label>
<input type="checkbox"
name="languages[]"
value="Perl" />
Perl
</label>
<label>
<input type="checkbox"
name="languages[]"
value="Ruby" />
Ruby
</label>
<br />
<input type="submit" value="Send" name="poll" />
</p>
</form>