Suppose i have a textarea with the size of a normal textbox, how do i make it stretchable when i press enter or crtl+enter to make a new line for user to type.
For example, i type something in textarea in the first line, then i press enter and the textarea will expand a new line for me to enter data.
<td>
<textarea rows="5" cols="50" name="description[]">
<?php echo $row[ 'description']; ?>
</textarea>
</td>
Above is the textarea that i mentioned.