- Code: Alles auswählen
- <?php
echo $form->create(array('action' => 'changeInterests'));
$i = 1;
$options = array();
foreach($zinsarten as $value)
{
$item = $value['Zinsart']['name'];
array_push($options, $item);
$i++;
}
echo $form->select('interest_type', $options, array('label'=>'Zinsart:'));
echo $form->input('from_month', array('label'=>'Von Monat:', 'type'=>'text'));
echo $form->input('to_month', array('label'=>'Bis Monat:', 'type'=>'text'));
echo $form->input('percent', array('label'=>'Prozent:', 'type'=>'text'));
echo $form->end('Speichern');
?>
Leider erscheint bei der Auswahlbox keine Beschriftung. Was mache ich falsch?