hi
I have a config.php file which i use to store reusable functions.
I would like to declare some global variables in this file and use them in my other PHP files which include config.php.
These variables will store values such as the directory path where I want to store attachments or the sender email address for my automatic email feature, etc.
The values of these variables will not be modified by the other PHP files but their values need to be set in a single place for easy maintainance.
How can i achieve this please?