Ver Mensaje Individual
  #11 (permalink)  
Antiguo 15/05/2006, 13:34
php.java.jsp
 
Fecha de Ingreso: octubre-2004
Mensajes: 128
Antigüedad: 20 años, 2 meses
Puntos: 2
no es tan dificil, a mi se me ocurre asi

en el index.php, la primer pagina donde envias los datos por post

Código:
<form name="form1" method="post" action="marcos.php">
<input name="nombre"/><input type="submit"/>
</form>
luego en marcos.php

Código:
<html>
<head>

<?

$nuevo=$_POST['nombre'];

?>

</head>

<frameset cols=30%,*,20%>
<frame src="top.jsp"/>
<frame src="main.php?ip=<?=$nuevo?>"/>
<frame src="left.php?ip=<?=$nuevo?>"/>
</frameset>

</html>
aqui top.php y main.php ya recibieron la variable y la puedes recuperar

main.php:

Código:
Valor actual: <?=$_GET['ip'];?>