tengo un form en una pagina en php que contiene un input que es un vector generado de la siguiente manera:
Código PHP:
echo "<form name='f1' method='post' action='this.php'>";
echo "<table border=1 align=center width=90%>";
echo "<tr>";
$qc="select * from `molde` where `cod_disp`=$disp order by `cod_molde`";
$rc=mysql_query($qc, $dbcon);
$i=1;
{
while ($row=mysql_fetch_array($rc))
{
printf ("<td><input name='c[%s]' type=text size=3></td>", $i);
$i++;
}
echo "</tr></table>";
echo "<input type=hidden name=cant value=".count($c)."</form>";
}
Ideas, sugerencias???
Gracias de antemano