Tengo el siguiente codigo!
Código PHP:
<table>
<?php
$cont1=0;
while ($cont1 < $max)
{
echo "<tr>";
echo "<td><input type='text'></td>";
echo "</tr>";
$cont1=$cont1+1;
}
?>
</table>
Código PHP:
echo "<td><input type='text'></td>";
Pero esos datos que voy a poner en 1, 2, 5, 10 ó 50 campos los necesito manipular!, seran enviados pormedio de un formulario a otro archivo php.
Se que la syntaxis para un campo de texto es :
Código HTML:
<input type "text" name="nombredemivariable">
Código HTML:
<input type "text" name="nombredemivariable1"> <input type "text" name="nombredemivariable2"> <input type "text" name="nombredemivariable10"> <input type "text" name="nombredemivariable50">