Textarea Field
From the menu go to: Insert > Forms > Textarea.

The Textarea tag can be used to place a multi line text entry field with optional default contents in a fill-out form. The attributes to Textarea are as follows:

name: is the symbolic name of the text entry field.
rows: is the number of rows (vertical height in characters) of the text entry field.
cols: is the number of columns (horizontal width in characters) of the text entry field.
Textarea fields automatically have scrollbars; any amount of text can be entered in them. The Textarea element requires both an opening and a closing tag.

Example:

<form method="post" action="yourscript.php">
<textarea name="name" rows="6" cols="30">
Alleycode is a breeze.
</textarea>
</form>

Produces:



See Also: Form Samples