hi folks,
following problem:
i have select-lists and radio-buttons on my site:
ie:
<select name="area_open">
<option value="<?php echo $open ?>" selected>
<?php echo $open ?>
</option>
<option value="yes">yes</option>
<option value="no">no</option>
</select>
there are two (ore more) options - in this case "yes or no" - if the user changes the value in the mysql-database, the result should be, that the selected value in the database is also the selected value at the list.
but with my example, i have 3 values (yes, yes, no or no, yes, no) - but i only want 2 of them (the selected one and the other one)
hope my english is good enough!!!
thanks