Hi,
How does one process forms in drupal 4.6.2 ?
I have : $dummy="hello"; $output .= form_checkbox($dummy,$dummy,1,$edit[$dummy]); $output .= form_submit(t('Submit')); print theme('page', $output);
But how do I read the values after user clicks 'submit' ?
I have $op=$_POST['op']; $edit=$_POST['edit'];
But both are empty when I read them.
Thanks,
V