What are Constants?
PHP Constants
A constant represents a literal value that will remain the same, for example the value for PI (3.14), the number of days in a week (7), or the number of ounces in a pound (16) all represent numbers that will never change. A constant can store a value similar to a variable, but that value cannot be modified during the execution of a script, once that constant is initialized. Constants are created using the built-in define() function, by assigning an identifier name to the constant along with a literal value.
