21-04-2007, 06:24 PM
Pour sélectionner la valeur moyenne d'un champ, tu peux peut-être recourrir à la fonction SQL AVG().
mysql_query("SELECT AVG(champ) AS moyenne_champ FROM table");
Sephi-Chan
mysql_query("SELECT AVG(champ) AS moyenne_champ FROM table");
Sephi-Chan