<!DOCTYPE html>
<html>
<body>

<?php
// define a case-insensitive constant
define("GREETING", "Welcome to ziqiangxuetang.com!", true);
echo GREETING;
echo "<br>";
// will also output the value of the constant
echo greeting;
?>
 

</body>
</html>