-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathorderform.html
More file actions
37 lines (37 loc) · 997 Bytes
/
orderform.html
File metadata and controls
37 lines (37 loc) · 997 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
29
30
31
32
33
34
35
36
37
<form action= "processorder.php"method= "post">
<table>
<tr bgcolor= "#cccccc">
<td width= "150">Item</td>
<td width= "15">Quantity</td>
</tr>
<tr>
<td>Tires</td>
<td align= "left"><input type= "text"name= "tireqty"size = "3"maxlength= "3" /></td>
</tr>
<tr>
<td>Oil</td>
<td align= "left"><input type= "text"name= "oilqty"size= "3"maxlength= "3" /></td>
</tr>
<tr>
<td>Spark Plugs</td>
<td align= "left"><input type= "text"name= "sparkplugs"size= "3"maxlength= "3" /></td>
</tr>
<tr>
<td>Shipping Address</td>
<td><input type= "text"name= "address"size= "20"maxlength= "20" /></td>
</tr>
<tr>
<td>How did you find Bob 's ?</td>
<td><select name= "find">
<option value= "a">I'm a regular customer</option>
<option value= "b">TV advertising</option>
<option value= "c">Phone directory</option>
<option value= "d">Word of mouth</option>
</select>
</td>
</tr>
<tr>
<td colspan= "2"align= "center"><input type= "submit"value= "Submit Order" /></td>
</tr>
</table>
</form>