Lo que debes hacer entonces es es indicar desde el boton del frame 1 indicar la ruta completa a donde quieres dirigirte y al final colocas un submit hacia el form que tiene los botones del frame 2. Algo así
a.php
Código HTML:
Ver original<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<input type="button" onclick="parent.contenido.formulario.submit()" value="formulario" />
b.php
Código HTML:
Ver original<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<?php
if(!empty($_GET)){
var_dump($_GET);
}
?>
<form name="formulario" action="b.php" method="get"> <input type="text" name="texto" /> <input type="text" name="texto2" /> <input type="text" name="texto3" /> <input type="text" name="texto4" />
c.php
Código HTML:
Ver original<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN" "http://www.w3.org/TR/html4/frameset.dtd">
<frameset cols="30%, *">
<frame src="a.php" name="menu" />
<frame src="b.php" name="contenido" />
</frameset>