简体   繁体   English

Codeigniter 3文本区域

[英]Codeigniter 3 textarea

I have tried to limit number of rows in textarea to 4 but its giving error 我试图将textarea中的行数限制为4,但是给定错误

Message: Array to string conversion

this is my code of textarea using helper class 这是我使用辅助类的textarea代码

$textarea_options = array('class' => 'form-control','rows' => 4,   'cols' => 40);

echo form_textarea('vc_desc', set_value('vc_desc'),  $textarea_options);

setup a $data array instead with all the options 设置$ data数组而不是所有选项

    $data = array(
        'name'        => 'vc_desc',
        'id'          => 'vc_desc',
        'value'       => set_value('vc_desc'),
        'rows'        => '50',
        'cols'        => '10',
        'style'       => 'width:50%',
        'class'       => 'form-control'
    );

    echo form_textarea($data);
Use rows and cols to get change the height and length of text area in code ignitor. 
$data = array('name' => 'SupAddress','value' =>set_value('SupAddress'), 'id'=>'SupAddress',  'class' => 'form-control' ,'readonly' => 'true' ,'rows' => '3', 'cols' => '40');

 echo Form_textarea($data);

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM