How do you include a file that is more than 2 directories back. I know you can use ../index.php to include a file that is 2 directories back, but how do you do
../index.php
.. selects the parent directory from the current. Of course, this can be chained:
..
../../index.php
This would be two directories up.