I am trying to direct a scripts include out of it's sub-directory back to the root directory and into includes/config.php
I'v done this, but it doesn't seem to be working on my webhost, it works fine on localhost though;
include_once "../includes/config.php";
The directory the file that contains the include in is only one sub-directory deep so I figured ../ would work, which it did on localhost but for some reason it doesn't work when I upload it to my localhost.
Could anyone explain why this isn't working?