Forum Moderators: coopster
You didn't provide much information but below a small piece of PHP code to generate a dropdownlist. It assumes the data for the list is in the array $listdata using it's key/value data.
echo "<select id='mylist'>\n";
foreach($listdata as $key => $value)
{
echo "<option value='$key'>$value</option>\n";
}
echo "</select>\n";