scusa questa e la correttaCodice PHP:
<?
$sql = "Select * from articoli ";
$resultArt = mysql_query($sql) Or DIE (mysql_error());
while ($data = mysql_fetch_object($resultArt)){
echo "Nome :$data->nome"; //ho messo nome ma tu metti quello che vuoi
}
?>