Say I have directory setup like this.
core/
includes/
snippets/
template.php
js/
index.php
Say in the index.php file, I have a file path like this " include 'snippets/template.php'; ". It works.
Or say If I am in template.php and I have a file path like this " include '../index.php'; ". It works as well.
I am wondering if there is a more global method to this so I don't have to worry about when to use "../" or not. It becomes hectic if there are a lot of includes and/or links.