il set di frame ha questo codice:
Codice PHP:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>TITOLO</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<frameset rows="*,90" cols="*" framespacing="0" frameborder="no" border="0">
<frame src="prima.php" name="mainFrame" scrolling="auto" noresize>
<frame src="menu.html" name="menuFrame" scrolling="no" noresize>
</frameset>
<noframes>
<body>
Utilizzi un Browser che non supporta i Frame.
</body>
</noframes>
</html>
e la pagina prima.php che mi interessa abbia lo scroll ha solo controlli php a parte questo l'intestazione:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>TITOLO</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<meta http-equiv="imagetoolbar" content="no"/>
<link rel="stylesheet" href="stili.css" type="text/css">
il body è stampato con l'echo di php....può essere quello il problema?