I have a page where users enter certain information about a car in a database and then they have the possibility to edit this information from another "Edit" page. I would like to forbid the users from changing the Make and Model of the car on the Edit page but still to keep the originally selected values. I tried disabled="true" but upon editing the page, the values are not being remembered. Is there anther way to do it? readonly="true" seems not to do the job either.
Here is my code for the model field on the "Edit" page:
<select name="model" id="model" class="validate[required] text-input">
<?php while(!$rs_models->EOF){?>
<option value="<?php echo $rs_models->fields['id'];?>" <?php if($rs_models->fields['id']==$model_id){?> selected="selected"<?php }?>>
<?php echo $rs_models->fields['title'];?>
</option>
<?php $rs_models->MoveNext(); } ?>
</select>