Let's say I have a file called header.php located in CMS / admin / includes. Let's say I've included this header.php file in a file called index.php located in CMS / admin.
Inside the header.php file I want to give include in a file called functions.php which is in CMS / admin (the same directory as the index.php). I should use:
<?php include "../functions.php" ?>
or just
<?php include "functions.php" ?>
Since header.php is being included in a file (index.php) that is in the same functions.php directory (CMS / admin), I should give include as if functions.php were in the same directory of header.php?
Did you understand?