I have thes form:
for ( $i=0;$i<10;$i++)
{
echo "<input type=radio name="primerradio" + $i + " value=1>";
echo "<input type=radio name="primerradio" + $i + " value=2>";
echo "<input type=radio name="primerradio" + $i + " value=3>";
}
How can i call to this variable after?


