0
I am able to bring in the combobox only one value that is in the mysql table, I need to list the two items in the same combobox. It is appearing one in a combobox and the other just below.
<div class="container">
<% if(busca.length > 0) { %>
<% for(var i = 0; i < busca.length; i++) {%>
<select>
<option value="0"selected="selected"><%=busca[i].category_name%></option>
</select>
</div>
Guilherme Costamilam Thank you very much!! It worked as I needed it!
– Anderson Chagas Domingos