Código PHP:
Ver original
<!doctype html> <html lang="es"> <head> <meta charset="utf-8"> <title>PHP</title> <style> </style> <script src=""></script> </head> <body> <form action="arreglo.php" method="post"> Nombre <input type="text" value="" id="nombre" name="nombre" /> <br /> Edad: <input type="text" value="" id="edad" name="edad" /> <br /> Email: <input type="text" value="" id="email" name="email" /> <br /> <input type="submit" value="enviar" id="enviar"/> </form> <script> </script> </body> </html> <?php echo "$cant<br><br>"; for($x=0;$x<$cant;$x++) { echo $datos[$x]; echo "<br>"; } ?>