Are you talking about <select> fields? There is nothing special that you have to do to access the value.
<form action='page.php' method='post'>
<select name='question'>
<option value='1'>Yes</option>
<option value='0'>No</option>
</select>
</form>
This will be available in page.php as $_POST['question'], and additionally as $question if the php.ini directive register_globals has a value of 'On'.
If this were an <input> text field the variable would be the same.
Regards,
Rich
::::::::::::::::::::::::::::::::::::::::::
The Spicy Peanut Project
http://www.spicypeanut.net
::::::::::::::::::::::::::::::::::::::::::