Created
June 21, 2023 14:49
-
-
Save SitesByYogi/c57dfe0dd8d6565d72c4961507776817 to your computer and use it in GitHub Desktop.
PHP Functions
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
function greet($name) { | |
echo "Hello, " . $name . "!"; | |
} | |
greet("John"); // Output: Hello, John! | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment