Hello!
If I have the following example:
/index.php
/test/test.inc
/test/pic/picture.jpg
in test.inc:
<img src="pic/picture.jpg"...
now I want to include the /test/test.inc in my index.php file. The problem is, that the picture cannot be found by the browser, because it is a relative path
-> /pic/picture.jpg doesn't exist.
Do you know any help for that problem?
Mario