Chapter 10. The Form API, Page 242
Wed, 03/18/2009 - 7:54am — jvandyk
Location on the page:
Middle
Chapter:
10. The Form API
Error:
$my_data = $form_values['my_placeholder'];
Correction:
$my_data = $form_state['values']['my_placeholder'];
Description of the Error:
In Drupal 6, form values are available within a submit function as $form_state['values'].
