say_hello()

A basic function to greet a visitor on a web page.

/**
* Say hello to a website visitor
*/

function say_hello() {
echo 'Hello! How are you?';
}