Cosa c'è di sbagliato in questo codice? mi dice che non si aspetta < nella linea 15:
Codice PHP:
<title>Rilevazione Giornaliera</title>
<?php
// load the configuration file.
$reqlevel 1;
include(
"../membersonly.inc.php");
include(
"../config.php");
        
//load all news from the database and then OREDER them by newsid
        //you will notice that newlly added news will appeare first.
        //also you can OREDER by (dtime) instaed of (news id)
        
$result mysql_query("SELECT * FROM rilevazione ORDER BY rilevazioneid DESC",$conn);
        
//lets make a loop and get all news from the database
        
while($myrow mysql_fetch_array($result))
             {
//begin of loop
               //now print the results:
               
<h3 align="center">Rilevazione effettuata il</h3> <table><td>echo $myrow['rilevazione'];</td></table>
<
table width="43%" border="NO" align="center">
  <
tr
    <
td width="32%">Previsione per il:</td>
    <
td width="68%">echo $myrow['giorno']; echo $myrow['mese'];</td>
  </
tr>
  <
tr
    <
td>Tempo Atmosferico</td>
    <
td>[img]http://meteovenosa.com/echo $myrow['tempo'];.gif[/img]</td>
  
</tr>
  <
tr
    <
td>Massima</td>
    <
td>echo $myrow['tempo'];</td>
  </
tr>
  <
tr
    <
td>Minima</td>
    <
td>echo $myrow['tempo'];</td>
  </
tr>
  <
tr
    <
td>Vento</td>
    <
td>echo $myrow['vento'];</td>
  </
tr>
  <
tr
    <
td>Pioggia</td>
    <
td>echo $myrow['poggia'];></td>
  </
tr>
</
table>
 }
//end of loop
?></table>
<body bgcolor="#000000" text="ffba00">
La linea 15 è questa:
Codice PHP:
<h3 align="center">Rilevazione effettuata il</h3> <table><td>echo $myrow['rilevazione'];</td></table
Qualcuno mi potrebbe aiutare?
Grazie