Files
demo/demo.php
2025-12-21 21:13:15 +03:30

17 lines
158 B
PHP

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