<?php
echo form_open('email/sent');
echo form_label('Name');
echo form_input('name');
echo "<br>";
echo form_label('From');
echo form_input('from');
echo "<br>";
echo form_label('Subject');
echo form_input('subject');
echo "<br>";
echo form_label('Message');
$data = array(
'name' => 'textarea',
'rows' => $,
'cols' => 32
);
echo form_textarea($data);
echo "<br>";
echo form_submit('submit','Sent email');
echo form_close();
?>
Asked
Active
Viewed 1,617 times
-3

Suraj Rao
- 29,388
- 11
- 94
- 103

shazz amir
- 3
- 2
-
1what is 'rows' => $,? you may forget to write name of variable! – Nilay Mehta Apr 17 '17 at 06:57
-
`'rows' => $,` what is row supposed to be? – Suraj Rao Apr 17 '17 at 06:57