$risultato=mysql_query("select nome, data from tabella
where date=DATE_SUB(NOW(),INTERVAL 1 day)
order by date DESC limit 0,30");

while(list($nome) = mysql_fetch_row($risultato)) {

echo $nome } ?>


In pratica mi dovrebbe selezionare tutti i nomi che hanno la data odierna, ma mi va a stampare la lista con i nomi doppi...

ho provato a mettere il Distint ma nn funge!!

ki mi aiuta a risolvere ??

grazie