我有一个添加表单,允许我将特定字段添加到数据库中,我的选项之一是下拉菜单,以便我可以设置表单类型:
我现在正在创建编辑页面,我已经将其他值称为$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>