<html> <head> <title>Formulario de entrada del dato</title> </head> <body>
<form method="post" action="pagina2.php"> Ingrese su nombre: <input type="text" name="nombre"> <br> <input type="submit" value="confirmar"
</form>
</body> </html>
Pagina de recepcion
<html> <head> <title>Captura de datos del form</title> </head> <body>
<?php echo "El nombre ingresado es:"; echo $_REQUEST['nombre']; ?>
</body> </html>