30

PHOTO EMBED

Mon Mar 04 2024 01:42:27 GMT+0000 (Coordinated Universal Time)

Saved by @codewarrior

<?php
function greetUser($name) {
    echo "Hello, $name!";
}

// Calling the function with a parameter
greetUser("John");
?>
content_copyCOPY