Ops !! Me lo ero dimenticato ecco l'errore che ricevo:
Parse error: parse error, unexpected T_VARIABLE in c:\programmi\easyphp1-7\www\prova.php on line 20

Ho provato anche con questa che segue, ma l'errore è sempre lo stesso.

<?
$sql ="select * from articoli
INNER JOIN dettaglio ON articoli.ID = dettaglio.ID"
//$sql ="select * from articoli INNER JOIN dettaglio ON articoli.ID = dettaglio.ID"
//$sql = "Select * from articoli where pagina ='imp0TMPE1'";
$resultArt = mysql_query($sql) Or DIE (mysql_error());
while ($data = mysql_fetch_object($resultArt)){
echo "<table width=100% border=1 cellspacing=0 cellpadding=0>
<tr>
<td width=35%><span class=Stile1>$data->titolo</td>
</span>

<td><span class=Stile1>$data->descrizione</td>
</span>
<td><span class=Stile1>$data->importo</td>
</span>
</tr>
</table>";


}
?>


Ciao Ciao