Hi
I have an array like the one below (but much longer)
array(
1 => 'Apparal',
'Business',
'Game',
);
How can i get PHP to echo out an <option> tag for each value in that array.
I want the key to be the value of the option, and the value to be what the option is.
<option value="key">Value</option>
Thanks in advance.