Skip to content

Instantly share code, notes, and snippets.

@SitesByYogi
Created June 21, 2023 14:49
Show Gist options
  • Save SitesByYogi/c57dfe0dd8d6565d72c4961507776817 to your computer and use it in GitHub Desktop.
Save SitesByYogi/c57dfe0dd8d6565d72c4961507776817 to your computer and use it in GitHub Desktop.
PHP Functions
<?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