Y si usas sessiones:
El codigo tendria que ser haci:
server 2
Código PHP:
session_start();
if (!isset($_SESSION["language"])){
$_SESSION["language"] = 'VALOR';
}
else
{
$titulo = $_SESSION["language"];
}
server 1
Código PHP:
<html>
<head>
<?
session_start();
$titulo = $_SESSION["language"];
?>
<title> <?=$titulo ?> </title>
</head>
<frameset rows="100%">
<frame name="principal" src="server2" marginwidth="10" marginheight="10" frameborder="0">
<frameset>
</html>
o sino cambia el iframe por
include();
asi:
Código PHP:
<html>
<head>
<?
include('server2.php');
?>
<title> <?=$titulo ?> </title>
</head>
</html>
Para saber mas sobre sessiones visita este FAQ
http://www.forosdelweb.com/860238-post129.html
Suerte
![de acuerdo](http://static.forosdelweb.com/fdwtheme/images/smilies/dedosarriba.png)
Salu2