
In php application, you shall see
Notice: Undefined variable: table_h in c:\easyphp1-8\www\phpapplication\includes\stats_mois.php on line 75
The variable table_h is local type. You shall declare it as global by adding the following line in your php file:
global table_h;











