Add demo.php

This commit is contained in:
2025-12-21 21:13:15 +03:30
commit 81c67a0213

16
demo.php Normal file
View File

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