Pages

Thursday, June 27, 2013

simple function in php

<?php

function hai(){

echo 'hello world';

}
echo hai().', i am a human';
?>

output :

hello world, i am a human

note  :  " . "  use for concatenation