allora io ho un po' di pagine
questa è la principale:
Codice:
<html>
<head>
<title>C.N.G.E.I. - Milano 2 - Branco KARELA</title>
<link rel="shortcut icon" href="favicon/favicon.ico" type="image/icon">
</head>
<frameset rows="128,*,64" frameborder="0" border="0" framespacing="0">
<frame src="top.html" name="top" noresize scrolling=no>
<frameset cols="256,*" frameborder="0" border="0" framespacing="0">
<frame src="lista.html" name="lista" noresize scrolling=auto>
<frame src="main.html" name="main" noresize scrolling=auto>
</frameset>
<frame src="contatore.html" name="contatore" noresize scrolling=no>
</frameset>
nel frame lista c'è una lista in HTML
cliccandu su un opzione di log avvengono un po' di cose finchè si cade su:
Codice:
<?php
include("config.php");
include("ctr.php");
echo "<html>
<head>
<link rel=\"stylesheet\" type=\"text/css\" href=\"style.css\">
</head>
<frameset cols=\"*\">
<frame src=\"$p_u/menu.php?nick=$nick&pw=$pw\" noresize scrolling=auto>
</frameset>
</head>";
?>
che carica un menù che è:
Codice:
<?php
include("config.php");
include("ctr.php");
echo "<html>
<head>
<link rel=\"stylesheet\" type=\"text/css\" href=\"./style.css\">
</head>
<body style=\"background:url(../../home_file/sfondo.jpg) fixed #2C1E00\">
<div align=center class=ben><font color=red size=2>LOGIN EFFETTUATO - Benvenuto $nick!!!</font></div><br>
<center>
<br>
<a href=\"../../../canzoniere/canzoniere.html\" target=\"main\" class=lk>
<span style='color:lime;font-size:20px;'><b>Canzoniere</b></span>
</a><br><br>
<a href=\"$p_u/trimestrale_ond07.php?nick=$nick&pw=$pw\" target=\"main\" class=lk><span style='color:lime;font-size:20px;'><b>Trimestrale Ottobre - Novembre
- Dicembre 2007</b></span></a><br><br>
<a href=\"$p_u/area3.php?nick=$nick&pw=$pw\" target=\"main\" class=lk>area3</a><br><br>
<a href=\"$p_u/area4.php?nick=$nick&pw=$pw\" target=\"main\" class=lk>area4</a><br><br>
<a href=\"http://www.lupetti.cngei.it\" target=\"_blank\" class=lk>
<span style='color:lime;font-size:20px;'><b>www.lupetti.cngei.it</b></span>
</a><br><br>
</center>
<!-- QUI' SOTTO E' POSSIBILE INSERIRE I LINK ALLE PAGINE AGGIUNTIVE COME SPIEGATO NEL \"README\"-->
<b>
<a href=\"$p_u/cam_pw.php?nick=$nick&pw=$pw\" class=lk ><span style='color:blue;font-size:20px;'>cambia password</span></a><br>
<br>
<a href=\"$home\" target=\"_top\" class=lk><span style='color:blue;font-size:20px;'>homepage</span></a><br>
</b>
</body>
</html>";
?>
detto questo succede che su Firefox va tutto ok, mentre su Internet Explorer quando viene visualizzato il frame ha un bordo bianco...
come ovvio al problema, dov'è che sbaglio
grazie anticipatamente
RAZZO
edit: risolto bastava mettere:
Codice:
<frameset cols=\"*\" frameborder=\"0\" border=\"0\" framespacing=\"0\">