$form->add(‘label’, ‘label_questionlist’, ”, “CESChooseaquestionfromthepool”);
for ($x = 0; $x <= 14; $x++) {
$obj = $form->add(‘select’, ‘_QUESTION_LIST’ . $x);
$obj->add_options($questionArray);
$obj->set_attributes(array(
‘class’ => ‘input-field control form-control’,
‘style’ => ‘width:500px’,
));
$obj->set_rule(array(
));
$obj->disable_spam_filter();
}