<?php
function greetUser($name) {
echo "Hello, $name!";
}
// Calling the function with a parameter
greetUser("John");
?>
<?php
function greetUser($name) {
echo "Hello, $name!";
}
// Calling the function with a parameter
greetUser("John");
?>