1 <html>2 <head>3 <title></title>4 </head>5 <?php6 $var=$_POST["numero"];7 echo "tabla de numero".$var;8 echo "<table border='1'>";9 echo "<td>";10 for($i=0;$i++;i<10)11 { 12 echo "<tr>"; 13 echo $r=$var*$i;14 echo "</tr>";15 16 }17 echo "</td>";18 echo "</table>";19 ?>20 <body>21 <form action="#" method="post" name="form">22 <label for="numero">23 <input type="number" required="required" name="numero">24 <input type="submit" value="enviar" name="enviar">25 </label>26 </form>27 </body>28 </html>
Enlace
El enlace para compartir es: