PHP Constants

School: University of Wisconsin-Milwaukee

Course: INFOST 440

Explanation

Constants are values that cannot be changed after they are created. Unlike variables, constants do not use a dollar sign before their names. Variables can have their values changed while a program is running, but constants stay the same. Constants are useful for information that should remain unchanged.

Back to Activity 3