我正在显示一个高度的下拉列表,它包含浮点值。当我在编辑表单上显示此下拉菜单时,未显示其中选择的旧高度值。
我想显示在我的下拉列表中选择的 5.6 英尺高度值,其值为 4、4.1、4.2....6.10、6.11、7 等。
以下是我使用的代码
<select name="height">
<?php for($height=(4.0); $height <= 7; $height=($height+0.1) ): ?>
<option value='<?php echo $height;?>' <?php if((5.6) == ($height)) echo "selected=selected"; ?> ><?php echo $height;?> ft</option>
<?php endfor;?>
</select>
有没有人知道这个问题的解决方案?请帮忙。