textarea() public method

public textarea ( string $name, string | null $value = null, array $attributes = [] ) : string
$name string The name of the text area
$value string | null The default value
$attributes array The attributes of the text area
return string
Example #1
0
 /**
  * Create a textarea input field.
  *
  * @param string $name The name of the text area
  * @param string|null $value The default value
  * @param array $attributes The attributes of the text area
  * @return string 
  * @param string $name
  * @param string $value
  * @param array $options
  * @return string 
  * @static 
  */
 public static function textarea($name, $value = null, $attributes = array())
 {
     return \Bootstrapper\Form::textarea($name, $value, $attributes);
 }