From de1cd8ff81281265d09f6686d2127f5b29a013bd Mon Sep 17 00:00:00 2001 From: cortylal <alexcortyl@gmail.com> Date: Thu, 19 Jun 2014 02:18:17 +0200 Subject: [PATCH] stats --- view/stats.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/view/stats.php b/view/stats.php index 3fbd36a..8159a04 100644 --- a/view/stats.php +++ b/view/stats.php @@ -12,15 +12,15 @@ </thead> <thead> <th>Nombre d'employé' : </th> - <th><?php $tmp = $stats->nbEmploye(); $nb_formated = number_format($tmp["nb"], 2, ',', ' '); echo $nb_formated; ?></th> + <th><?php $tmp = $stats->nbEmploye(); $nb_formated = number_format($tmp["nb"]); echo $nb_formated; ?></th> </thead> <thead> <th>Nombre de vétérinaire' : </th> - <th><?php $tmp = $stats->nbVeterinaire(); $nb_formated = number_format($tmp["nb"], 2, ',', ' '); echo $nb_formated; ?></th> + <th><?php $tmp = $stats->nbVeterinaire(); $nb_formated = number_format($tmp["nb"]); echo $nb_formated; ?></th> </thead> <thead> <th>Nombre d'animaux : </th> - <th><?php $tmp = $stats->nbAnimaux(); $nb_formated = number_format($tmp["nb"], 2, ',', ' '); echo $nb_formated; ?></th> + <th><?php $tmp = $stats->nbAnimaux(); $nb_formated = number_format($tmp["nb"]); echo $nb_formated; ?></th> </thead> <thead> <th>Nombre moyen d'animal par client : </th> -- GitLab