diff --git a/action.php b/action.php
index 07f6712..66a57d7 100644
--- a/action.php
+++ b/action.php
@@ -318,16 +318,44 @@ elseif ($action=='update_checkmd5')
echo "
update checkmd5 done !" ;
- $query="select count(checkmd5) as smd5 from importation_data_aidimpact group by checkmd5 having smd5>1";
+ $query="select checkmd5,count(checkmd5) as smd5 from importation_data_aidimpact group by checkmd5 having smd5>1";
$res=mysqli_query($conn, $query);
$num=mysqli_num_rows($res);
- echo '
'.$num;
+
+ if ($num > 0) {
+ echo "
Date import | Nom fichier | idt | no_compte | code_JNL | No_piece | date_piece | lib_mouvement | debit | credit | code_activite |
".$row['date_import']." | ".$row['filename']." | ".$row['idt']." | ".$row['no_compte']." | ".$row['code_JNL']." | ".$row['No_piece']." | ".$row['date_piece']." | ".$row['lib_mouvement']." | ".$row['debit']." | ".$row['credit']." | ".$row['code_activite']." |