I have created custom plunging to get list of values from the database.
Now I want create a Drop-Down list using this array
This is my Select List
$this->add(array(
'name' => 'group_name',
'type' => 'select',
'attributes' => array(
'id'=>'group_name',
'class'=>'large',
),
'options' => array(
'label' => 'Select List',
'value_options' => array(
'1' => 'php',
'2' => 'java'
),
),
));