-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathorderform.html
More file actions
39 lines (38 loc) · 1003 Bytes
/
orderform.html
File metadata and controls
39 lines (38 loc) · 1003 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
38
39
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"/>
<title>BOB 的表单</title>
</head>
<body>
<form action="processorder.php" method="post">
<table border="0">
<tr bgcolor="#ccc">
<td width='150'>Item</td>
<td width="15">Quantity</td>
</tr>
<tr>
<td>Tires</td>
<td align="center">
<input type="text" name="tireqty" size="3" maxlength="3"/>
</td>
</tr>
<tr>
<td>Oil</td>
<td align="center">
<input type="text" name="oilqty" size="3" maxlength="3"/>
</td>
</tr>
<tr>
<td>Spark Plugs</td>
<td align='center'><input type="text" size="3" name="sparkqty" size="3" maxlength="3"/></td>
</tr>
<tr>
<td colspan="2" align="center">
<input type="submit" value="Submit Order"/>
</td>
</tr>
</table>
</form>
</body>
</html>