Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PHP

php include file in parent directory

//If your server is not resolving the file from the parent directory using
include '../somefilein_parent.php'

//try this (using the parent directory relative to the script):
include __DIR__ . "/../somefilein_parent.php";
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #php #include #file #parent #directory
ADD COMMENT
Topic
Name
4+8 =