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