For Pull-Down Selection:
<select name=country>
<option>Argentina</option>
<option selected>Australia</option>
<option>Austria</option>
<option>Bahamas</option>
.
.
.
</select>
For Radio Selection:
Orange <input type=radio name=type value=apple checked> Apple <input type=radio name=type value=orange>
For Checkbox Selection:
<input type=checkbox name=type checked>
Coming next, how to detect those selections in PERL-CGI script...
No comments:
Post a Comment