I would like to start out saying I don't want to use Javascript....
I have an array which is returning correctly I believe, however I am only having the first entry in the array display in the drop down list.
Is this a problem with the array? or with this function?
foreach($array as $key=>$value){
$html = "<option value='$key'>$value</key>";
}
echo "<select name="process">$html</select>";