You appear to be a bot. Output may be restricted
Description
Creates a textarea field.
Usage
textarea( $name, $len, $text, $value, $rows, $args );
Parameters
- $name
- ( mixed ) required –
- $len
- ( mixed ) required –
- $text
- ( mixed ) required –
- $value
- ( mixed ) required –
- $rows
- ( mixed ) optional default: 10 –
- $args
- ( mixed ) optional –
Returns
voidSource
File name: oik-bwtrace/libs/bobbforms.phpLines:
1 to 6 of 6
function textarea( $name, $len, $text, $value, $rows=10, $args=null) { $lab = label( $name, $text ); $itext = iarea( $name, $len, $value, $rows ); tablerow( $lab, $itext ); return; }View on GitHub View on Trac