17 lines
158 B
PHP
17 lines
158 B
PHP
<!DOCTYPE html>
|
|
<html>
|
|
<body>
|
|
|
|
<?php
|
|
function myTest() {
|
|
define("GREETING", "Welcome to W3Schools.com!");
|
|
}
|
|
|
|
myTest();
|
|
|
|
echo GREETING;
|
|
?>
|
|
|
|
</body>
|
|
</html>
|