CodeIgniter:使用HTML5必需属性的输入框

时间:2013-05-19 12:44:05

标签: php codeigniter

我在 CodeIgniter 框架中有一个表单,我想使用 HTML“必需的”属性。 我怎么能这样做?

$data = array(
              'name'        => 'username',
              'id'          => 'username',
              'value'       => 'johndoe',
              'maxlength'   => '100',
              'size'        => '50',
              'style'       => 'width:50%',
            );

echo form_input($data); 

需要的结果:

    <input type="text" name="username" id="username" value="johndoe" 
required maxlength="100" size="50" style="width:50%" /> 

1 个答案:

答案 0 :(得分:6)

您只需将其添加到数组中即可。

$data = array(
              'name'        => 'username',
              'id'          => 'username',
              'value'       => 'johndoe',
              'maxlength'   => '100',
              'size'        => '50',
              'style'       => 'width:50%',
              'required' => 'required'
 );

echo form_input($data);