Código PHP:
<?php
$nfiles = $_POST["files"];
$ncolumnes = $_POST["columnes"];
$nTaules = $_POST["nTaules"];
for($i = 1; $i <= $nTaules; $i++)
{
echo "<table>";
for($j = 1; $j <= $nFiles; $j++)
{
echo "<td>";
for($k = 1; $k <= $nColumnes; $k++)
{
echo "<tr>(hola)</tr>";
}
echo "</td>";
}
echo "</table><br><br>";
}
?>
veis algun error??
muchas gracias!! :)