correggi così e vedi cosa ti stampa:

Codice PHP:
<HTML>
<HEAD>
<TITLE>Gestione Rientro</TITLE>
</HEAD>
<BODY>
<?php
error_reporting
(E_ALL);
include (
"funzioni_sql.php") or die ("file non trovato");
// chiamata alla funzione di connessione
$host="localhost";
$username="root";
$pass="";
$Connessione=mysql_connect($host,$username,$pass);
if(!
$Connessione)
{ print(
"<H1>Connessione al server MySQL fallita</H1>");
exit;
}
else {
$DB=mysql_select_DB("icemanagement");
if(!
$DB)
{ print(
"<H1>Connessione al database fallita </H1> ");
exit;}
else {
query(select from rientro);
if(
mysql_num_rows($auth)==0) { print("non ci sono prodotti rientrati");exit;}
else { print(
"I prodotti rientrati sono:");

echo 
'
<table border="1">
<tr>
<th>CodProdotto</th>
<th>Nome Prodotto</th>
<th>Utente</th>
<th>Quantità</th>
<th>Destinazione</th>

</tr>'
;

while (
$row mysql_fetch_assoc($result)) {
$CodProdotto htmlentities($row['CodProdotto']);
$NomeProdotto htmlentities($row['NomeProdotto']);
$Utente htmlentities($row['Utente']);
$Quantita htmlentities($row['Quantita']);
$Destinazione htmlentities($row['Destinazione']);


echo 
'
<tr>
<td>$CodProdotto</td>
<td>$NomeProdotto</td>
<td>$Utente</td>
<td>$Quantita</td>
<td>$Destinazione</td>
</tr><?'
;
}

echo 
'</table><?'};
}
// chiudo la connessione a MySQL
mysql_close();

?>
<hr noshade size="10" width="80%" align="center" />

<p align='center'>[url="index.php"]<font color="#0000FF">Home[/url] </p>

</BODY>
</HTML>
se continua a non stampare nulla clicca con il tasto destro e visualizza il sorgente HTML e posta quello.