Advertisement
Guest User

Untitled

a guest
Jan 9th, 2012
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. function my_form(){
  2. $form['foo'] = array(
  3. '#type' => 'textfield',
  4. );
  5. $form['actions'] = array(
  6. '#type' => 'actions',
  7. '#value' => 'submit',
  8. );
  9. $form['actions']['submit'] = array(
  10. '#type' => 'submit',
  11. '#value' => 'Submit',
  12. '#submit' => array('choose_winter_instruction_form_submit'),
  13. );
  14.  
  15. return($form);
  16. }
  17.  
  18. function choose_winter_instruction_form_submit($form, &$form_state){
  19. drupal_goto('/');
  20. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement