Active
Project:
Multipage form controller
Version:
6.x-1.x-dev
Component:
Miscellaneous
Priority:
Normal
Category:
Support request
Assigned:
Unassigned
Issue tags:
Reporter:
Created:
11 Feb 2011 at 06:29 UTC
Updated:
21 Feb 2011 at 18:14 UTC
Comments
Comment #1
srikanth.g commentedThe second argument of drupal_goto() is the query string.
http://api.drupal.org/api/drupal/includes--common.inc/function/drupal_go...
But when you are developing a module,its better to use hooks like hook_form,hook_insert.
Comment #2
vkareh commentedThis is not a critical issue, nor it's in the relevant module issue queue. I suggest you take a look at the following modules:
Just a note, drupal_goto() will stop the flow of whatever is it that you are doing and is not the recommended way of redirecting after a form submit. Try
$form_state['redirect']in your submit hook.