I have a problem here to solve ... I take the numbers that are grouped with commas in the bank. Separate with explode Ex:
$dados = "36,38,40,42";
$separar = explode(",",$dados);
$result = $separar[0];
Now comes the doubt ... how to list these data in a while? These data will be part of inputs. Example:
<ul>
while($array = mysql_fetch_array($prod)){
$dados = $array['$dados'];
echo "
<li><input name='dados' type='radio' value='$dados'><label>$dados</label></li>";
}
</ul>";