Forum Moderators: coopster
Thanks for any help.
you would just use the name of the form element in the $_POST array
<select name="quantity3">
once submitted
echo $_POST['quantity3'];
a little trick to look at what's in your $_POST array, put the following code at the top of your processing script
echo '<pre>';
print_r($_POST);
echo '</pre>';