PHP Constants

School: University of Wisconsin-Milwaukee

Course: INFOST 440

Explanation

Constants are values that cannot be changed after they are defined during a PHP script. Unlike regular variables, constants do not use a dollar sign before their names. Variables can have their values changed while the program runs, while constants are meant to stay the same.

Back to Activity 3