<!DOCTYPE html>
<html>
<body>
<?php
define("GREETING", "Welcome to W3Schools!");
function myTest() {
echo GREETING;
}
myTest();
?>
</body>
</html>