Previously we talked about adding query strings for drupal_goto().
Drupal – Escape the Hex Characters in drupal_goto()
When the form is submitted, we can decide the redirect path in the form_submit() function.
Redirect to node/1 after form submission
function <form id>_submit($form, &$form_state) {
$form_state['redirect'] = 'node/1'
}
Continue reading Drupal 7 – Set Query Strings in the path for form_state[‘redirect’]



