I created a custom form and after the form is submitted I need to display the submitted data in a table? This seems like a very simple problem. I am able to use dpm()
and drupal_set_message()
to display data submitted from the form in mymodule_form_submit($form, &$form_state)
; however, I can’t output it to a table.
I have 3 field values
$form_state['redirect'] = 'some/path/' . $form_state['values']['my_value'];
Using this I can send just 1 value. But how can I send an array with this? Query string may appear to be very long.