How is it possible to select a file in the home directory?

131 Views Asked by At

In php how would I select a header file from a page that isn't in the home directory?

2

There are 2 best solutions below

0
On BEST ANSWER
require_once('../header.php');

would include the header.php file from the parent directory. Use either relative or absolute paths for the require function.

1
On
include('/path/to/the/header/file.php');

You can use absolute and relative paths. If you don't specify a path at all, PHP will search through its include_path setting and check each of those directories in sequence.