PHP Constants

School: UWM

Course: INFOST 440

Explanation

A constant stores a value that should not change while the PHP script is running. Constants do not use a dollar sign when they are used. Variables use a dollar sign and their values can be changed later in the program. Constants are useful for information that should stay the same.

Back to Activity 3