Constants in PHP

This string uses constants. My name is Gabe.
This website is made for INFOST 440.

Constants are a unique kind of variable in PHP (and other languages).

Unlike variables, which are mutable (changeable) at any time after they're defined; Constants are immutable (unchangeable) once defined.

This means they can be used for things that would never change while the code is running (i.e. version numbers, app names, etc.).

Constants are also automatically global variables, meaning they can be accessed from anywhere within the code.