I've got a Drupal 6 form API question which may or may not be possible, or a good idea.
Is it possible to have two input fields per label?
I'm familiar with this format:
$form['example_textfield'] = array(
'#type' => 'textfield',
'#title' => t('text here'),
'#size' => 30,
'#maxlength' => 32,
'#required' => TRUE,
);
As the way to make one label with one field, but is it possible to have one label and two input fields? and create something like: label: {input field} {input field}
If there is a way to do it, how would I get the two values into the DB table?
Is such an approach even a good idea? or should I stick to the single label/single input field method demoed above?