<?
echo "<select name=choice>";
//set the value of the array
$array = "a,b,c,d,e";
//explode the array and iterate through the array
$myarray = explode(",",$array);
//create an option from each element in the array
foreach ($myarray as $item){
echo "<option name=$item>$item</option>":
}
hth
bastien