A Drupal form textarea example
Drupal textarea FAQ: How do I create an HTML textarea in a Drupal form (Drupal 6 or Drupal 7)?
Assuming that you're comfortable with creating a Drupal form, you can create a Drupal form textarea as easily as this:
# an html textarea for our drupal form $form['life_story'] = array( '#title' => t('Your Life Story'), '#type' => 'textarea', );
That code creates an HTML textarea with the label "Your Life Story". The textarea is specified with this option in your form declaration: