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'];?>