how can I run specific code when a form is submitted in Drupal ?

I'm using hook_form_alter to edit the form, but I actually need to collect the data inserted by user and run code when the user click on "Save / Register" etc

thanks

link|improve this question

feedback

2 Answers

up vote 5 down vote accepted

You can add callbacks to the submit array. It goes something like this:

function myform_form_alter(&$form, &$form_state, $form_id) {
  if($form_id == 'some_form') {
    $form['#submit'][] = 'mycallback';
  }
}

function mycallback(&$form, &$form_state) {
// do stuff
}
link|improve this answer
1  
feedback

Try adding the following function:

function myform_form_submit($form_id, $form_values){ 
        print_r($form_values);
        // custom code 
 }

worked for me. Hope it helps :)

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.