he creado, por una parte, un formulario dinámicamente con un bucle:
Código PHP:
<table>
<form method="post" action="modifica.php" name="f">
<tr>
<td><input type="hidden" name="idcomp" value="<?=$id;?>" /><input type="hidden" name="nc" value="<?=$nc;?>" /><input type="text" name="comp" value="<?=$row["componente"];?>" size="20" maxlength="25" class="input"/></td>
<?
for ($i=1;$i<=$nc;$i++)
{
$tt="it";
$tt.=$i;
printf("<td align='center' width='20'><input type='text' name='%s' value='%s' size='4' maxlength='5' class='input'/></td>",$tt,$row[$tt]);
}
?>
</tr>
<tr bgcolor="#aaddFF">
<td align="center" colspan="<?=$nc+2;?>"><input type="submit" value="Guardar Modificaciones" class="input2" /></td>
</tr>
</table>
</form>
a ver si me podéis ayudar
saludos