I am getting these warning when add a tag in my pages:
This is tag: <? $table= "my_table";
include ("../stat/write_logs.php"); ?>
and
Warning: Failed opening 'config_sql.php' for inclusion (include_path='.:/usr/share/php') in /my_path/stat/write_logs.php on line 4
Impossible de se selectionner la base SQL, essayez plus tard
Change your include_path variable in php.ini to add /stat as a directory to browse.
Your include_path will become:
include_path='.:/stat/:/usr/share/php'