Chapter 10. The Form API, Page 242

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'].