If i have an array such as
[Yellow] => 1 [Red] => 2 [Blue] => 3
and then want to use these in a form INPUT with $options to make a dropdown selection, is it possible to use the color names Yellow/Red/Blue instead of the values 1/2/3?
currently the dropdown has 1, 2, 3 as the options instead of the names. The array is used elsewhere and is in the format for a reason.