hi
I want to include a file from an other included file... but somehow the include in the file is ignored.
Is it suposed to be that way? When so, is there a other way do it?
example:
test.php:
<?php
include('fileA.inc');
?>
fileA.inc
<?php
do some smart stuff
include('fileB.inc');
?>
fileB.inc
<?php
do even smarter stuff
?>
I runt test.php
fileA.inc gets included, but the include fileB statement seems to be ignored... why?