Sunday, October 5, 2008

Php trik: Undefined variable


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;

No comments: