我将如何创建以下内容:
I am looking to create a dropdown menu full of form input types but when one is selected I would like it to create the respective html for the input and save it to the database. 我将使用codeigniter。
例子:
如果我从下拉菜单中选择文本区域,它将创建<textarea></textarea>
,然后我可以将其转义并将其保存到数据库中。
到目前为止,我已经提出了以下代码
if (isset($_REQUEST['general_options']))
{
$optionName = $_REQUEST['general_options'];
$optionValue = strtolower(str_replace(" ", "", $_REQUEST['general_options']));
//$this->load->view( $page, $data, FALSE);
echo form_label($optionName, $optionValue);
echo form_input($optionValue, '', '');
}`
`