Name
textarea
Synopsis
print $query->textarea('name' [,'value',rows,columns])
Generates a large multiline text input box.
nameThe name to assign the input to (required).
valueThe initial value to place into the text input box.
rowsThe number of rows to display.
columnsThe number of columns to display. Using named parameters, the syntax is:
print $query->textarea(-name=>'
name', -default=>'value', -rows=>rows, -columns=>columns, -override=>1, -onChange=>function, -onFocus=>function, -onBlur=>function, -onSelect=>function);-override=>1Text field should not inherit its value from a previous invocation of the script
-onChange=>functionBrowser should execute
functionwhen the user changes the text field-onFocus=>functionBrowser should execute
functionwhen the focus is on the text field-onBlur=>functionBrowser should execute
functionwhen the focus leaves the text field-onSelect=>functionBrowser should execute
functionwhen the user changes a selected portion of the text field