21,873
社区成员




<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="content-type" content="text/html" />
<meta name="author" content="blog.anchen8.net" />
<title>Untitled 2</title>
</head>
<body>
<form action="processorder.php" method="post">
<table id="table1">
<tr id="tr1">
<td id="td1"> Item</td>
<td id="td2">Quantity</td>
</tr>
<tr id="tr2">
<td id="td3">Tires</td>
<td id="td4"><input type="text" name="tireqty" size="3" maxlength="3" /></td>
</tr>
<tr id="tr3">
<td id="td5">Oil</td>
<td id="td6"><input type="text" name="oilqty" size="3" maxlength="3"/></td>
</tr>
<tr id="tr4">
<td id="td7">
Spark Plus
</td>
<td id="td8" ><input type="text" name="sqarkqty" size="3" maxlength="3" /></td>
</tr>
<tr>
<td id="td9" colspan="2"><input type="submit" value="Submit Order" /></td>
</tr>
</table>
</form>
</body>
</html>
<?php
echo '<p>Order Process!</p>';
?>