constant.php

SCHOOL = UWM

CLASS_NAME = INFOST 440

Explanation

Constants are any values that stay the same while the program runs ( kind of like constants in yor own life). After you define a constant, you should not change it. Variables can be changed whenever you want, but constants are meant for fixed information like course names, settings, or labels. That is the main difference between constants and variables.

Back