PHP Source:
<!DOCTYPE html>
<html>
<body>

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

echo constant("GREETING");
?>


</body>
</html>
Result:
Show PHP - © w3schools.com
Privacy Policy