Populating an HTML select list from a PHP array

gearssopitol

New Member
I am trying to populate an HTML select list using an array of customer names. I am using the following code, but it does not seem to work. I have a function that query an SQL Server database and gets the names. I know that works fine as I am using it in other code, for some reason when I try to populate the select list it is coming up blank. Would it be better or more efficient to use a \[code\]for\[/code\] loop? What is the best way to accomplish this?\[code\]<select name="customers"> <?php $custNames = getCustomers(); foreach($custNames as $customers){ echo '<option value="' . $customers . '">' . $customers . '</option>'; } ?></select>\[/code\]
 
Back
Top