The spaces were the cause of the problem. Once I removed them and ran a test, the first Drop Down retained
the choice. Thank you so much for fixing my problem!
One more thing. Is it possible to use a variable in the $_POST ?
For example, I have:
$choices = array ('choice1', 'choice2', 'choice3', 'choice4', 'choice5', 'choice6', 'choice7', 'choice8');
foreach ($choices as $key => $value) {
then later I want to use $value in the $POST, but I cant use $POST['$value'] as it does not work.
This is to avoid the same block of code for each of 8 Drop Down boxes.