Hi. / in the beginning of a link to get to the root folder doesnt work in php include.
for example "/example/example.php"
What is the solution?
|
1
|
|
|
|
|
|
include() (and many other functions like require(), fopen(), etc) all work off the local filesystem, not the web root. So, when you do something like this
You're trying to include from the root of your *nix machine. And while there are a multitude of ways to approach what you're doing, Paul Dixon's suggestions are probably your best bets. |
||
|
|
|
|
I'm assuming by root folder you mean your web document root, rather than filesystem root. To that end, you can either
|
||
|
|
|
This sounds like PHP blocking you from using files outside of the current directory, for security reasons. |
||
|
|