voilà le code
$quantite=mysql_query("SELECT adresseemail, SUM(quantite) AS total FROM ventes GROUP BY adresseemail ORDER BY total DESC LIMIT 0,1 ");
while($data = mysql_fetch_array($quantite))
{
echo "il y a $data de points";
}
ca affiche "il y a ARRAY de points".
quel est le problème
merci