I'm having problems accessing the posted values after a form submission with Drupal 7.
Say I have a simple form with one text field and a submit button.
function sample_form($form, &$form_state){
$form['sample']['name'] = array(
'#description' => 'Name',
'#value' => 'Name',
'#type' => 'textfield',
);
$form['sample']['sample_submit'] = array(
'#type' => 'submit',
'#value' => 'SUBMIT',
'#submit' => array('sample_form_submit')
);
}
and then my submit handler, which is meant to display the value the user entered in the textfield.
function sample_form_submit($form, &$form_state){
drupal_set_message($form_state['values']['name']);
}
However, the message always contains the default value for the textfield, in this case 'name'. If I enter "Mike" and hit submit, the message displays "name" (the default value).
How can I get at the submitted values? I know I can access with
$form_state['input']['name']
but my understanding is that the above gives me the raw, unsanitized $_POST data.
I need the user entered value, how can I get this? I'm really unclear about the process of getting user submitted data using the drupal forms API.
Thanks for any help!