This seems like it should be a pretty easy question, but I just can't seem figure it out.
If I have an html page in a function how do I populate a drop down menu in that page with the items from an array.
I'm guessing that because the page is in a function then I'd write something like this :
<select name=\"UserShow\">
<option value=\"0\">Select an Item</option>
$my_list
</select>
But what's the Php code to get the array to make each of its items an option in the drop down?
Thanks for any help