After a SQL I have this record as a return:
// Dados
$cores = "amarelo, branco, azul, verde";
I would like to mount a select where the content of $cores
is displayed as follows:
<select name="">
<option value="amarelo">amarelo</option>
<option value="branco">branco</option>
<option value="azul">azul</option>
<option value="verde">verde</option>
</select>