Welcome to UW-Milwaukee Forum

The maximum number of users allowed on UW-Milwaukee Forum is 250.

Understanding Constants in PHP

Definition of Constants?

Constants are simply identifiers attached to a certain value. Constants cannot be changed when the script is running.

In my example above, the constant remains the same while the script is running. Here it would be the number of visitors on my site.

Here are a couple of examples:

Difference between Constants and Variables