$ricevuta = mysql_query("SELECT id, nome_articolo, nome_file_immagine, quantita, descrizione FROM ambra");
while($row=mysql_fetch_array($ricevuta)){
echo 'ID: '.$row[0].' Nome: '.$row[1].'
Immagine: [img]'.$row[2].'[/img]
Quantità:'.$row[3].'
Descrizione:'.$row[4].'
\n';
}