No problem for me
<?php
div id="sidebar">
php
include 'menu.php'
</div>
<div id="content">
php
include 'page.php'
</div>
?>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN"
"http://www.w3.org/TR/html40/frameset.dtd">
<HTML>
<HEAD>
<TITLE>BLA</TITLE>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<META NAME="Generator" CONTENT="EditPlus">
<META NAME="Author" CONTENT="">
<META NAME="Keywords" CONTENT="">
<META NAME="Description" CONTENT="">
</HEAD>
<?php
//Get name send by clicking Home as logged in user
$nickname=$_GET['nickname'];
//End
echo "<FRAMESET rows=\"225,40, *\">";
echo "<FRAME src=\"top.php\" name=\"top\" frameborder=\"0\" noresize scrolling=\"no\">";
echo "<FRAME src=\"menu.php\" name=\"menu\" frameborder=\"0\" noresize scrolling=\"no\">";
echo "<FRAME src=\"home.php?nickname=$nickname\" name=\"home\" frameborder=\"0\" noresize scrolling=\"yes\">";
echo "</FRAMESET>";
?>
</HTML>
<?php
<div id="sidebar">
php
include 'menu.php'
</div>
<div id="content">
<script>
function changeContent()
{
document.getElementById('contentDIV').innerHTML = window.frames['lfslapper'].document.getElementsByTagName('html')[0].innerHTML;
}
</script>
<div id = "contentDIV"><br></div>
<iframe id = "lfslapper" name = "lfslapper" src ="page.php" onLoad = "changeContent()" style = "height:0; width:0; border-width:0;"></iframe>
</div>
?>