<?
print("<select name=Bunny>
<option value=one>One</option>
<option value=two>Two</option>
</select>
?>
whichever one they select will be the value of Bunny.
for example if the select the first one you could say:
if($Bunny)
{
printf("Bunny equals %s", $Bunny);
}
which would print: Bunny equals one