I display data into an html table, w/ a drop down box with a list of venues. Each volunteer will be assigned a venue. I envision being able to go down thru the html table and assigning each volunteer a venue. The drop down box contains all the possible venues that they can be assigned to.
<select>
<option value="1">Setup</option>
<option value="2">Check in</option>
etc...
</select>
Then once I am done assigning each volunteer, I want to hit submit and it will assign the appropriate value for each volunteer.
How would I go about doing that, I know how to do that, but only one at a time.