PHP interesse |
|
Inderdaad.
Door te includen wordt het 'nieuwe bestand' aan je 'huidige bestand' toegevoegd. Je moet dus vanuit het huidige bestand redeneren.
Voorbeeldje:
ROOT
index.php
MAP
include1.php
include2.php
Als je nu in je index-bestand 'include1.php' include, moet je doen:
<?
include("map/include1.php");
?>
<? include("map/include1.php"); ?>
Mocht je nu in je include1-bestand 'include2.php' willen includen, dan moet je het volgende doen:
<?
include("map/include2.php");
// en niet include("include2.php");
?>
<? include("map/include2.php"); // en niet include("include2.php"); ?>
Hoe komt dit?
Je include bestand include1.php in je index.
Het tweede bestand wordt - ondanks dat het in include1.php geïncluded is - óók vanuit je index bekeken.
Het klinkt lastiger dan het is, maar ja... |