PHP-Constants

Define constants using the define function, like so:

define("SALES_TAX", .07859358);

define("TEACHER", "Mr. Chagoyan");

define("PI", 3.1415926535);

It is good practice to use all capitals for your constant names for easy identification.

Here's another example: constants.php