Textarea element, multiple lines.
create a textarea element:
parameter:
text - to initialize with default value.
cols - width. To set the height value you can use the textarea->rows flag.
name - optional. Its highly recommended to use unique identifiers to avoid side effects.
example:
$myTextarea = $ippfp->createTextarea("",20,"mytextarea");