<!DOCTYPE html>
<html>
<head>
	<title>Full HTML entry from</title>
</head>

<body bgcolor="lightyellow">
    <h1><center>The Ice Cream Shop</center></h1>
    <h2>Where Does the Error Go?</h2>

<form name="form1" method="POST" action="/~sultans/php/demo/4http/form3.php">

<fieldset style='width:550px; height:310px; border-color:gold'>
<legend>Enter Fields Below</legend>

<table bgcolor=eeeeee width=550px>
<tr>
	<td><b>Enter First Name
	<td><input type="text" name="firstname" />
<tr>
	<td><b>Last Name
	<td><input type="text" name="lastname" />
<tr>
	<td><b>Enter Address
	<td><textarea name="address" rows="4" cols="47"></textarea>
<tr>
	<td><b>Ice Cream Flavor
	<td><select name="flavor[]" SIZE="4" multiple="multiple">
    		<option>Vanilla</option>
    		<option>Chocolate</option>
    		<option>Strawberry</option>
    		<option>Butter Pecan</option>
    		<option>Rocky Road</option>
    		<option>French Vanilla</option>
    		<option>Pistachio</option>
	</select>
<tr>
	<td><b>Select Topping
	<td>
	<input type="checkbox" name="topping[]" value="hotFudge" />     Hot Fudge
	<input type="checkbox" name="topping[]" value="sprinkles" />    Sprinkles
	<input type="checkbox" name="topping[]" value="nuts" />         Nuts
	<input type="checkbox" name="topping[]" value="whippedCream" /> Whipped Cream
<tr>
	<td><b>Credit Card
	<td>
	<input type="radio" name="creditCard" value="MC" />   Master Card
	<input type="radio" name="creditCard" value="VISA" /> Visa
	<input type="radio" name="creditCard" value="AMEX" /> American Express
	<input type="radio" name="creditCard" value="DISC" /> Discover
<tr>
	<td colspan=2>
	<input type="submit" value="  Place Order  "  />
	<input type="reset"  value="Cancel"           />
</table>
</fieldset>
</form>

</body>
</html>