Hi, I know this is a very dumb question, but I just cant figure it out. I have my functions.php on my main website. Then there is a folder under that called boards. In the boards folder I am trying to call the functions.php file from the folder above it. I dont want to use the full http:// because for some reason then it says my functions have not bee defined. Please help!!!
If I have got this right and you are saying that the boards folders is the subfolder you should just need to have:
include( "../functions.php" );
Otherwise it would be:
include( "subfolder/functions.php" );