1
I have a problem here to solve... I take from the bank the numbers that are grouped with comma. Split with explode Ex:
$dados = "36,38,40,42";
$separar = explode(",",$dados);
$result = $separar[0];
Now comes the question... how to list this data in a while? This 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>";
But these numbers are to put on labels
<input>
or are id’s of something you have to go to the bank to get ?– Isac