Ejemplo n.º 1
0
 public static function textArea($attributes)
 {
     $elementHtml = '<textarea ';
     $elementHtml = htmlRender::setAttributes($elementHtml, $attributes);
     $elementHtml = $elementHtml . '>' . htmlRender::setContent($attributes) . '</textarea>';
     echo $elementHtml;
 }