no, questo è il pezzo di codice interessato, e la riga 65 e' quella commentata. Se tolgo il commento, mi da' errore. Se lo lascio funziona tutto.
EDIT: Posto il codice dell'intera pagina. Ci sono altri blocchi molto simili in cui si ripete l'errore, commentati pure quelli.
Codice:
<HTML>
<HEAD>
<TITLE>Polisportiva Comunale Arcade</TITLE>
<?php include 'include/metatag.txt' ?>
<LINK REL="stylesheet" HREF="1.css" TYPE="text/css">
</HEAD>
<BODY BGCOLOR="#6699CC">
<TABLE width="796" HEIGHT="500" BORDER="0" CELLSPACING="1" CELLPADDING="0" align="center"><TR><TD BGCOLOR="#000000">
<TABLE width="796" HEIGHT="100%" BORDER="0" CELLSPACING="1" CELLPADDING="0"><TR><TD BGCOLOR="#5AACFF" HEIGHT="145"><a href="index.php">
<img src="img/logo_arcade.jpg" width="141" height="140" border="0"
style="margin-left:15px; margin-top:5px; margin-bottom:5px; margin-right:5px;" alt="Logo Polisportiva Arcade"></a>
<img src="img/scritta_polarcade.gif" style="margin-left:100px" alt="Banner Polisportiva Arcade" width="468" height="140">
</TD></TR>
<TR><TD BGCOLOR="#5AACFF" VALIGN="top" WIDTH="100%">
<CENTER>
<TABLE BORDER="0" WIDTH="100%" HEIGHT="15" CELLSPACING="1" CELLPADDING="0"><TR><TD BGCOLOR="#000000" WIDTH="100%">
<?php include 'include/header_date.php'; ?>
</TD></TR></TABLE>
</CENTER>
<CENTER>
<TABLE BORDER="0" CELLSPACING="25"><TR><TD valign="top">
<!--Left Menu-->
<?php
include 'include/menusx.php';
?>
<!--End Left Menu-->
</TD>
<TD valign="top">
<!--Main Content-->
<TABLE BORDER="0" WIDTH="577" HEIGHT="450" CELLPADDING="1" CELLSPACING="1" BGCOLOR="#000000">
<TR>
<TD bgcolor="#336699" HEIGHT="10">
<div align="center">
<font face="verdana" size="2" color="#FFFFFF">
<b>
<?php
if ($sez == cal)
{
if ($champ == CoppaVeneto) { echo "Calendario e risultati Coppa Veneto femminile girone I" ; }
else if ($champ == SerieD) { echo "Calendario e risultati Serie D femminile girone D" ; }
else if ($champ == Under16A) { echo "Calendario e risultati Under 16 femminile girone A" ; }
else if ($champ == Under16B) { echo "Calendario e risultati Under 16 femminile girone B" ; }
/* else if ($champ == 2Div) { echo "Calendario e risultati Seconda Divisione femminile girone A" ; } */
else { echo "Calendari Pallavolo"; }
}
else if ($sez == clas)
{
if ($champ == CoppaVeneto) { echo "Classifica Coppa Veneto femminile girone I" ; }
else if ($champ == SerieD) { echo "Classifica Serie D femminile girone D" ; }
else if ($champ == under16A) { echo "Classifica Under 16 femminile girone A" ; }
else if ($champ == under16B) { echo "Classifica Under 16 femminile girone B" ; }
/* else if ($champ == 2Div) { echo "Classifica Seconda Divisione femminile girone A" ; } */
else { echo "Classifiche Pallavolo"; }
}
else if ($sez == team)
{
echo "Squadre Pallavolo" ;
}
?>
</b></font></div>
</TD></TR>
<TR><TD VALIGN="top" BGCOLOR="#FFFFFF">
<P><BR>
<CENTER>
<?php
if ($sez == cal)
{
if ($champ == CoppaVeneto) { echo "Calendario e risultati Coppa Veneto femminile girone I" ; }
else if ($champ == SerieD) { echo "Calendario e risultati Serie D femminile girone D" ; }
else if ($champ == under16A) { echo "Calendario e risultati Under 16 femminile girone A" ; }
else if ($champ == under16B) { echo "Calendario e risultati Under 16 femminile girone B" ; }
/* else if ($champ == 2Div) { echo "Calendario e risultati Seconda Divisione femminile girone A" ; } */
else { include 'volley/calendari.txt'; }
}
else if ($sez == clas)
{
if ($champ == CoppaVeneto) { echo "Classifica Coppa Veneto femminile girone I" ; }
else if ($champ == SerieD) { echo "Classifica Serie D femminile girone D" ; }
else if ($champ == under16A) { echo "Classifica Under 16 femminile girone A" ; }
else if ($champ == under16B) { echo "Classifica Under 16 femminile girone B" ; }
/* else if ($champ == 2Div) { echo "Classifica Seconda Divisione femminile girone A" ; } */
else { include 'volley/classifiche.txt'; }
}
else if ($sez == team)
{
include 'volley/squadre.txt';
}
?>
</CENTER><P>
</TD></TR></TABLE>
<!--End Main Content-->
</TD></TR></TABLE>
</TD></TR></TABLE>
</TD></TR></TABLE><br><?php include 'include/bottom.php'; ?>
</BODY>
</HTML>