[insert_php] function hello() {
$msg = ‘Hello’;
return $msg;
}
$greeting = hello();
echo $greeting;
[/insert_php]