<?php
function hai(){
echo 'hello world';
}
echo hai().', i am a human';
?>
output :
hello world, i am a human
note : " . " use for concatenation
function hai(){
echo 'hello world';
}
echo hai().', i am a human';
?>
output :
hello world, i am a human
note : " . " use for concatenation