I have a few custon functions I need to use in one project. At the moment I am including them manually by adding the lines
include("ldap/ldap_ban_variables.php");
include("ldap/ldap_ban_functions.php");
I would like to avoid having to add these 2 lines in all the time, does it affect the running of the programme if I place these 2 files in a different folder, or canI just add them to the main variables and functions files?
Will it slow things down if they are in the main functions?