-1

I can create form with drupal forms api, but I don't know how to do hook to edit or add the content

g_thom
  • 2,810
  • 2
  • 18
  • 18
Ildar
  • 798
  • 2
  • 14
  • 35

1 Answers1

1

In your form_submit handler, you can write the contents of your form variables (such as $form_state) to the database, or send an email, and so on.

See http://drupal.org/node/751826 for details on submitting forms.

g_thom
  • 2,810
  • 2
  • 18
  • 18