capturo los datos en un input la idea es cargar un arreglo con los datos ingresados, tengo este codigo.
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
$datos=array($_REQUEST['nombre'],$_REQUEST['edad'],$_REQUEST['email']);
echo "$cant<br><br>";
for($x=0;$x<$cant;$x++)
{
echo $datos[$x];
echo "<br>";
}
?>