Uso questo sitema per il guestbook nel mio sito:
Pagina con iframe:
Codice PHP:
...
<body>
<iframe src="pagina.html" id="contentFRM" marginwidth="0" marginheight="0" scrolling="no" frameborder="1"></iframe>
</body>
</html>
Che caricherà:
Codice PHP:
...
<head>
<title>titolo</title>
<script type="text/javascript">
function autofitIframe(id){ // v.1.0
//copyright 2004 Eddie Traversa http://www.dhtmlnirvana.com/
if (!window.opera && !document.mimeType && document.all && document.getElementById){
parent.document.getElementById(id).style.height=this.document.body.offsetHeight+"px";
}
else if(document.getElementById) {
parent.document.getElementById(id).style.height=this.document.body.scrollHeight+"px"
}
}
</script>
<body onload="autofitIframe('contentFRM')">
contenuto
</body>
</html>