System information

Exercise 1: Using an HTML form to collect data 105
<td><select size="1" name="eventType">
<option value="1" selected>Surfing</option>
<option value="2">Mountain Climbing</option>
<option value="3">Mountain Biking</option>
</select>
</td>
</tr>
<!--- Field: tripDescription --->
<TR>
<TD valign="top"> Trip Description </TD>
<TD>
<textarea cols="50" rows="5" name="tripDescription"></textarea>
</TD>
</TR>
<!--- Field: tripLocation --->
<TR>
<TD valign="top">Trip Location</TD>
<TD><INPUT name=tripLocation size=50></TD>
</TR>
<!--- Field: departureDate --->
<TR>
<TD valign="top"> Departure Date</TD>
<TD><INPUT name=departureDate size=10></TD>
</TR>
<!--- Field: returnDate --->
<TR>
<TD valign="top"> Return Date</TD>
<TD><INPUT name=returnDate size=10></TD>
</TR>
<!--- Field: numberPeople --->
<TR>
<TD valign="top">Number of People</TD>
<TD><INPUT size=6 name=numberPeople></TD>
</TR>
<!--- Field: Price --->
<TR>
<TD valign="top">Price</TD>
<TD><INPUT size=10 name=price></TD>
</TR>
<!--- Field: baseCost --->
<TR>
<TD valign="top"> Base Cost </TD>
<TD><INPUT size=10 name=baseCost></TD>
</TR>
<!--- Field: depositRequired --->
<TR>
<TD valign="top"> Deposit Required </TD>
<TD><input type="checkbox" name="depositRequired" value="Yes"></TD>
</TR>
<!--- Field: tripLeader --->
<TR>
<TD valign="top">Trip Leader</TD>
<TD><INPUT maxLength=50 size=50 name=tripLeader></TD>
</TR>
<!--- Field: photo --->