Defines - constant variables
Back to PHP
You can use define to declare constant variables
Example
<?php
define("USER","David");
echo "Hello ".USER;
?>
This will display 'Hello David'
<?php
define("USER","David");
echo "Hello ".USER;
?>