
Erika Gabriela Villanueva Perez de Leon
PreguntaNo puedo descargar el archivo .html, se queda cargando la barra verde.

Jorge Luis Martínez Hernández
no se si es un bug, a mi igual me pasó prueba a recargar la pagina

Carlos Eduardo Gomez García
Hola! Será por tu conexión a internet, te los dejo aquí:
reto2.html
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Title</title> </head> <body> <form action="reto2.php" method="post"> <input name="Numero"/> <input type="submit"/> </form> </body> </html>
reto2.php
<?php $numero = $_POST['Numero']; ?> <table border="1"> <?php for ($i = 0; $i <= 10; $i++): ?> <tr> <td><?php echo "$numero x $i:"; ?></td> <td><?php echo $numero * $i; ?></td> </tr> <?php endfor; ?> <?php $factorial = 1; for ($f = $numero; $f >= 1; $f--) { $factorial *= $f; } ?> <tr> <td><?php echo "$numero!"; ?></td> <td><?php echo $factorial; ?></td> </tr> </table>