(PCC)::[How-to-use-Case-insensitive-constant-name-in-php]::[php]
<!DOCTYPE html> <html> <body> <?php // case-insensitive constant name define("GREETING", "Welcome to bookofnetwork.com!", true); echo greeting; ?> </body> </html>