All Questions
Tagged with dirname include-path
2 questions
0
votes
1
answer
47
views
Including .html file from parent dir fails to load .html assets
I'm trying to include a .html into my .php file. I can do that, however assets defined relatively to the .html doesn't seem to load.
I've tried with:
include(dirname(dirname( __FILE__)) . '/html/...
3
votes
2
answers
5k
views
PHP get File Directory of an included File
i have the following PHP File Structure:
dir0
dirA
dirA.1
dirA.1.1
fileA.php : dirname(__FILE__).'/docs';
dirA.2
...
...