i have strange problem with include commnad
my files structure
/index.php
/files/init.php
/files/db.php
and sources of this files
index.php
<?
include ('files/init.php');
?>
init.php
<?
include ("db.php");
?>
Source from db.php is not executing.. NOW if i rename file db.php to db2.php and rename it in init.php NOW IT WORKS there is some php cache or what ? i dont understand it.