<!DOCTYPE html>
<html>
<head><title>Welcome to book seller</title></head>
<body>
<h1>You are welcome</h1>
<form action="main.php" method="post">
please input your name:<input type="text" name="name"></br>
please input your address:<input type="text" name="address"></br>
please input your zip:<input type="text" name="zip"></br>
</br>
<b>please fill in the quantity field of the following form</b>
</br></br>
<table border="1">
<tr>
<td>book</td><td>publisher</td><td>price</td><td>quantity</td>
</tr>
<tr>
<td>Web technology</td><td>Springer press</td><td>$5.0</td><td><input type="text" name="WNumb"></td>
</tr>
<tr>
<td>mathematics</td><td>ACM press</td><td>$6.2</td><td><input type="text" name="MNumb"></td>
</tr>
<tr>
<td>principle of OS</td><td>Science press</td><td>$10</td><td><input type="text" name="PNumb"></td>
</tr>
<tr>
<td>Theory of matrix</td><td>High education press</td><td>$7.8</td><td><input type="text" name="TNumb"></td>
</tr>
</table>
</br>
payment method:
<input type="radio" name="payMethod" value="cash" checked>cash
<input type="radio" name="payMethod" value="cheque">cheque
<input type="radio" name="payMethod" value="credit card">credit card
</br></br>
<input type="submit">
<input type="reset">
</form>
</body>
</html>
<html>
<head><title>Welcome to book seller</title></head>
<body>
<h1>You are welcome</h1>
<form action="main.php" method="post">
please input your name:<input type="text" name="name"></br>
please input your address:<input type="text" name="address"></br>
please input your zip:<input type="text" name="zip"></br>
</br>
<b>please fill in the quantity field of the following form</b>
</br></br>
<table border="1">
<tr>
<td>book</td><td>publisher</td><td>price</td><td>quantity</td>
</tr>
<tr>
<td>Web technology</td><td>Springer press</td><td>$5.0</td><td><input type="text" name="WNumb"></td>
</tr>
<tr>
<td>mathematics</td><td>ACM press</td><td>$6.2</td><td><input type="text" name="MNumb"></td>
</tr>
<tr>
<td>principle of OS</td><td>Science press</td><td>$10</td><td><input type="text" name="PNumb"></td>
</tr>
<tr>
<td>Theory of matrix</td><td>High education press</td><td>$7.8</td><td><input type="text" name="TNumb"></td>
</tr>
</table>
</br>
payment method:
<input type="radio" name="payMethod" value="cash" checked>cash
<input type="radio" name="payMethod" value="cheque">cheque
<input type="radio" name="payMethod" value="credit card">credit card
</br></br>
<input type="submit">
<input type="reset">
</form>
</body>
</html>