Hi,
Part of a form I've created in Drupal 6 is:
$form['limiter'] = array(
'#type' => 'select',
'#id' => 'limiter',
'#options' => array('10'=>'10','25'=>'25','50'=>'50')
);
Which works fine.
However how do I define the default selected index so '25' is selected when the page loads? Anything I pass to '#default_value' doesn't seem to work.
Any advice appreciated!