When building a PHP application using OOP you end up with multiple files that have everything to do with the process of the application and the actual build of functions and classes. So how do you maintain some consistency within an application? You create constants for the application like so:
define(definition, value);
Example:
define(”constants”, “on”);
So now, as long [...]
















