include "con.php" would find the con.php file in the current folder.
include "../con.php" would find it in the folder above.
What is the syntax to find it in the folder 2 above?
and lastly, what is the syntax to find it in the folder which is in the same "above one" folder? (like if i have a folder MAIN, with foldersONE and TWO in it. con.php is in TWO and the file to be run is in ONE)?
Thanks!