<?php
    
    define("CONSTANT", "Hello");
    
    echo CONSTANT; // Output is 'Hello'
    echo constant; // Output will be 'constant' or and error
    
?>