Create a constant:
define('CONSTNAME', 'Earl'); //or const CONSTNAM = 'Earl';
return value of the constant:
echo CONSTNAME;
Create a constant:
define('CONSTNAME', 'Earl'); //or const CONSTNAM = 'Earl';
return value of the constant:
echo CONSTNAME;