Cannot include file from the file located in the same parent directory.
This is the file structure
- ROOT
-> source_code
-> functions
-> FileFunction.php
-> template
-> WebContent.php
I want to include FileFunction.php in the WebContent.php file but, it gives me a warning says cannot find a file in the directory.
Here is what I write on the WebContent.php file
include("../functions/FileFunction.php");