我正在尝试将以下文本字段输入转换为带有选项的下拉菜单。
<form id='reForm' method='post' name='form2' action='index.php' enctype="multipart/form-data" >
<input size='32' type='text' class='textinput5' name='city' value='<?php print $reCity; ?>' id='reCity'>
</form>
这是我想出的,但它不起作用:/
<select class='textinput5' name='city' value='<?php print $reCity; ?>' id='reCity'>
<option value="montreal">Montreal</option>
<option value="california">California</option>
</select>
有任何想法吗?谢谢