<!DOCTYPE html>
<html>
<body>

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

</body>
</html>