Sinceramente, vedendo il codice, mi stupisce (e dispiace), che firefox lo visualizzi comunque:
Codice PHP:
<head>
<frameset cols="15%,85%" frameborder="NO" border="0" framespacing="0">
<frame src="iframe.htm" name="sinistra"
<frame src="primo.htm" name="destra"
</frameset>
<noframes>
</head>
<body>
</body>
</noframes>
</html>
Prova a cambiarlo almeno in qualcosa del genere (non tollero la struttura a frame quindi, non avendola mai usata, non sono certo sia corretta al 100%):
Codice PHP:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Frameset//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="it" lang="it">
<head>
<title>Qui il titolo</title>
</head>
<frameset cols="15%,85%" frameborder="NO" border="0" framespacing="0">
<frame src="iframe.htm" name="sinistra" />
<frame src="primo.htm" name="destra" />
<noframes>
<body>
Qui dovresti mettere un contenuto alternativo per eventuali browser incapaci di leggere i frame
</body>
</noframes>
</frameset>
</html>
-
PS: la sezione è errata, andava in Basi Html