Nööö,
folgendes geht unproblematisch:
1.)
PHP-Code:
$options[] = 'AAA';
$options[] = 'BBB';
Values und Label sind der Wert.
2.)
PHP-Code:
$options[6] = 'AAA';
$options[9] = 'BBB';
Values sind jeweils der Index im Array, Label ist der Wert.
3.)
PHP-Code:
$options[0] = 'AAA';
$options[1] = 'BBB';
Values und Label sind der Wert !!! entspricht 1.)
4.)
PHP-Code:
$options['a'] = 'AAA';
$options['b'] = 'BBB';
Values sind jeweils der Key im Array, Label ist der Wert.
5.)
PHP-Code:
$options['A']['a1'] = 'A-1';
$options['A']['a2'] = 'A-2';
$options['B']['b1'] = 'B-1';
$options['B']['b2'] = 'B-2';
Mit Gruppierung.
Gruß, Cliff