1. Una pagina con un formulario que tiene un textbox con mi nombre
INICIO.PHP
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Documento sin título</title>
</head>
<body>
<form action="Recepcion.php" method="post">
Nombre:
<input type="text" name="txt_Nombre" />
<iframe src="Frame.php" width="500" height="300" name="datos" id="datos" >
</iframe>
<input type="submit" name="btn_Ingresar" value="Ingresar Datos" />
</form>
</body>
</html>
2. Dentro de este formulario tengo un iframe estoy poniendo un textbox con la direccion.
Frame.php
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Documento sin título</title>
</head>
<body>
Direccion
<input type="text" name="txt_Direccion" id="txt_Direccion" /></body>
</html>
3. Una pagina que recibe la data y la muestra, es decir que recibi el NOMBRE y la DIRECCION, mediante el uso de un form y un submit
Recepcion.php
<?php
$nombre = $_POST['txt_Nombre'];
$direccion = $_POST['datos.txt_Direccion'];
$direccio1 = $_POST['txt_Direccion'];
echo $nombre;
echo "<br>";
echo $direccion;
echo "<br>";
echo $direccio1;
echo "<br>";
?>
Dejo mi codigo de muestra para que les sea mas sencillo apoyarme.
Gracias de antemano y buen fin de semana.