Ver Mensaje Individual
  #1 (permalink)  
Antiguo 05/10/2012, 14:09
ragde23fer
 
Fecha de Ingreso: octubre-2008
Mensajes: 268
Antigüedad: 16 años, 1 mes
Puntos: 3
Enviar datos de un iframe via POST

Hola, espero puedan ayudarme, mi problema es que tengo:

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&iacute;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&iacute;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>";

?>


Mi problema esta en que NO LOGRO QUE ME MUESTRE LA DATA QUE TENGO DENTRO DE IFRAME, NO PYUEDO VER NADA, SOLO LO Q ESTA FUERA EL IFRAME, ALGUIEN ME PUEDE APOYAR.


Dejo mi codigo de muestra para que les sea mas sencillo apoyarme.

Gracias de antemano y buen fin de semana.