simple example php function

<?php
//simple example php function
function welcome()
{
echo "Welcome to Function";
}
welcome();
?>