//user-defined function function greetings() { echo "Welcome to our PHP Tutorial."; } echo 'John, ', greetings(); echo '
'; echo 'Peter, ', greetings();
Hello World!