Eclipse Php : variable undefined evenif it is defined in an require_once php file [message #1791607] |
Mon, 02 July 2018 15:40  |
Eclipse User |
|
|
|
1
down vote
favorite
I am using as a beginner : Eclipse IDE for PHP Developers Version: Photon Release (4.8.0) Build id: 20180619-1200 OS: Windows 10, v.10.0, x86_64 / win32 Java version: 1.8.0_77
I have a file index.php with a require_once(initialisation.php) The initialisation.php defines a variable $Modeles_Chemin And the variable $Modeles_Chemin is used in index.php (after the require_once)
On my website, it works fine no undefined variable but in eclipse editor I receive an undefined variable.
(Of course I have the same problem with the other variables).
Here is an extract : index.php :
<?php
require_once("prog/php/initialisation_site.php");
include($Modeles_Chemin.$Modeles_Nom."/html_begin.php");
initialisation_site.php :
$Contenu_Chemin = "contenu/";
$Modeles_Chemin = $Contenu_Chemin."modeles/";
How can I fix this ?
thanks
|
|
|
|
|
|
|
|
Powered by
FUDForum. Page generated in 0.05054 seconds