$form['prod_select']=array(
'#type' => 'select',
'#title' => t('Select a product'),
'#size' => 7,
'#options' => $options,
'#default_value' => key($options),
'#attributes' => array('ondblclick' => 'return select_product_search();'),
);
this is what I have in my form's select-option..how to display options in table..should I use theme?
--
Cheers