Codice PHP:
<html>
<body>
<?php
$username="";
$password="";
$database="";
mysql_connect(localhost,$username,$password);
@mysql_select_db($database) or die("Impossibile selezionare il database.");
$result = @mysql_query('SELECT image, cfpiva_eventi, cfpiva_azienda, data_scadenza FROM azienda, eventi WHERE CFPIVA_EVENTI=CFPIVA_AZIENDA and DATA_EVENTO = CURDATE() + INTERVAL 1 DAY and data_scadenza >= CURDATE() ');
$risultati=@mysql_query('SELECT * FROM azienda, eventi WHERE CFPIVA_EVENTI=CFPIVA_AZIENDA and DATA_EVENTO = CURDATE() + INTERVAL 1 DAY and data_scadenza >= CURDATE() ');
$num=mysql_numrows($risultati);
mysql_close();
?>
<div style="width: 950px;height: 1200px; overflow-y: scroll;border:0px red;">
<table align="center" width="100%" height="100%" border="0" bordercolor="red" rules="none" frame="box" cellspacing="2" cellpadding="10">
<tr>
</tr>
<?php
if (!$result) {
exit('<p> Error: ' . mysql_error() . '</p>');
}
$i=0;
while ($i < $num)
while ($row=mysql_fetch_array($result))
{
$azienda=mysql_result($risultati,$i,"azienda");
$descrizione_evento=mysql_result($risultati,$i,"descrizione_evento");
$data_evento=mysql_result($risultati,$i,"data_evento");
$link=mysql_result($risultati,$i,"link");
$tipo_evento=mysql_result($risultati,$i,"tipo_evento");
$link_mappa=mysql_result($risultati,$i,"link_mappa");
$note_eventi=mysql_result($risultati,$i,"note_eventi");
$v = '<a href="'.$link.'" target="_blank">'.$link.'</a>';
?>
<tr>
<td width="21%" align="center"><font face="Impact, Brush script, Arial, Helvetica, sans-serif"COLOR="#800000" SIZE="2"><?php echo "<p><img src=\"{$row['image']}\" />";?></font></td>
<td width="18%" align="center"><font face="Impact, Brush script, Arial, Helvetica, sans-serif"COLOR="#800000" SIZE="4"><?php echo $azienda;?></font></td>
<td width="22%" align="center"><font face="Impact, Brush script, Arial, Helvetica, sans-serif"COLOR="#800000" SIZE="2"><?php echo $descrizione_evento;?></font></td>
<td width="16%" align="center"><font face="Impact, Brush script, Arial, Helvetica, sans-serif"COLOR="#800000" SIZE="3"><?php print ("<td>$v ");?></font></td>
<td width="23%" align="center"><font face="Impact, Brush script, Arial, Helvetica, sans-serif"COLOR="#800000" SIZE="2"><?php echo $link_mappa;?></font></td>
</tr>
<?php
$i++;
}
?>
</body>
</html>