CodeIgniter Forums
How to create textarea in CI ? - Printable Version

+- CodeIgniter Forums (https://forum.codeigniter.com)
+-- Forum: Archived Discussions (https://forum.codeigniter.com/forumdisplay.php?fid=20)
+--- Forum: Archived Development & Programming (https://forum.codeigniter.com/forumdisplay.php?fid=23)
+--- Thread: How to create textarea in CI ? (/showthread.php?tid=54741)



How to create textarea in CI ? - El Forum - 09-23-2012

[eluser]nencor[/eluser]
i got an error like this

Severity: Notice

Message: Undefined index: name

Filename: helpers/form_helper.php

Line Number: 264

here is my code

Code:
<?php $data = array(
                                'class' => 'textbox',
                                'id' => 'keterangan',
                                'cols' => '2',
                    );
                                echo form_textarea($data);
                    ?>

what went wrong ?

update : so textarea need 'name' parameter. solved


How to create textarea in CI ? - El Forum - 09-23-2012

[eluser]solid9[/eluser]
The variable 'name' in your array is missing.