CodeIgniter, form helper - Adding classes to the elements CodeIgniter, form helper - Adding classes to the elements codeigniter codeigniter

CodeIgniter, form helper - Adding classes to the elements


$data = array(          'name'        => 'title',          'value'          => $this->input->post('title'),          'class'       => 'titleInput',          'style'       => 'height:30px'        );echo form_input($data);

reference