Php Constants Tutorial
Constant are opposite of variables. They have a fixed value. In PHP constants can be defiend by using a word define. It's considered good practice to use upper case names for constants names
define('CONSTANT_NAME', 'CONSTANT_VALUE');
for example
<?php
define(’ME’, 'Shahid Khan');
?>

