Bonjour tout le monde ,

j'ai un petit souci technique ,j'arrive pas à affichier le pourcentage :
Sachant que le pourcentage = 1 + (Delta_estim/Consommee+Raf) :

Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
$total_site_estim[$row['Site']]+=$row['Estimee'];
 $total_site_consom[$row['Site']]+=$row['Consommee'];
 $total_site_raf[$row['Site']]+=$row['Raf'];
 $total_site_delta[$row['Site']]+=$row['Delta_estim'];
 $total_site_pourcent[$row['Site']] += 1+($row['Delta_estim'])/($row['Consommee']+$row['Raf']));
 $lessites= array_merge_recursive($total_site_estim,$total_site_consom,$total_site_raf,$total_site_delta,$total_site_pourcent);