In PHP, do I literally have to include a specific file in all scripts to ensure that it is called before all others? I intend to define some constants and all scripts are to expect/pretend that these constants were already defined without any need to double check.
How can I ensure that a specific script is called when a visitor visits a system?
Another question. Are constants created with the define() method available to all users that are visiting a system? Does this special script that I intend to create need to be invoked JUST ONCE when the very first user visits the system? Or do the constants need to be recreated whenever a new user visits the system?