Thursday, August 25, 2016

PHP Constant Functions

PHP Constant

<?php
//define a constant
define("GREETING","Hello you! How are you today?");

echo constant("GREETING");
?>

No comments:

Post a Comment