Hello,
there is a little problem and i'm new with module programming for Drupal.
I've made a Form with form_textfield, form_submit and created it with form.
e.g. like that:
$form_c .= form_textfield('Year','project_year','', 4, 4, NULL, NULL, TRUE);
$form_c .= form_submit('Submit Data','project_check', NULL);
$page_content = form($form_c,'post', NULL, NULL);
i can't read out after submitting the values from the textfields. they are named by drubal edit[project_year] and now i can't read in my Script $_POST['project_year'].