Ver Mensaje Individual
  #5 (permalink)  
Antiguo 21/10/2008, 09:18
Tragedy
 
Fecha de Ingreso: octubre-2008
Mensajes: 2
Antigüedad: 15 años, 6 meses
Puntos: 0
Respuesta: ayuda formulario!!

Tu codigo en PHP 5 deberia quedar algo asi:

Código PHP:
<?PHP for($i=1;$i<=15;$i++)
{
?>
<tr>
 <td><?PHP echo $row[$i?></td>
 <td>1<input type='radio' name='partido<?PHP echo $i ?>' value='1'></td>
 <td>x<input type='radio' name='partido<?PHP echo $i ?>' value='x'></td>
 <td>2<input type='radio' name='partido<?PHP echo $i ?>' value='2'></td>
</tr>
<?PHP
}
?>