php

php

last Job
php
$site = 'ExplainThat';
function sayHello(){
$s = 'Hello from ';
echo $s;
//single line comment
}
function sayHelloEx(){
$s = 'Hello from ';
global $site;
echo $s.$site;
/*Comment spanning
two or more lines */
}
sayHello();
print $site;
?>

1708574843 Show Sitemap