I was wondering how include worked. i thought it was making 2 files or more into one big file
for example file 1 includes file 2. file 1 is in the root directory while file 2 is in root/include/file2. so if file 2 needed to include something from the root/include directory then instead of putting include("file3.php"); i would need to put include("root/include/file3.php"); so then all 3 files are considered by the server to be one big file.
am i anywhere close to how it actually is?