特定のフィールドをデータベースに追加できる追加フォームがあります。オプションの1つは、フォームタイプを設定できるドロップダウンメニューです。
現在、編集ページを作成中で、他の値を$field->name
etcと呼んでい$field->type
ますが、ドロップダウンメニューの特定の値を設定するにはどうすればよいですか?
私の追加ビューは次のとおりです。
<label for="edit_fields_type">Type: </label>
<select name="edit_fields_type" id="edit_fields_type">
<option value="">Please Select</option>
<option value="input" <?php echo set_select('edit_fields_type','input', ( !empty($fieldType) && $fieldType == "input" ? TRUE : FALSE )); ?>>Input</option>
<option value="textarea" <?php echo set_select('edit_fields_type','textarea', ( !empty($fieldType) && $fieldType == "textarea" ? TRUE : FALSE )); ?>>Text Area</option>
<option value="radiobutton" <?php echo set_select('edit_fields_type','radiobutton', ( !empty($fieldType) && $fieldType == "radiobutton" ? TRUE : FALSE )); ?>>Radio Button</option>
<option value="checkbox" <?php echo set_select('edit_fields_type','checkbox', ( !empty($data) && $data == "checkbox" ? TRUE : FALSE )); ?>>Check Box</option>
</select>