### String to print $helloWorld="Hello world!"; ### ### Prints 'Hello world!' ### function PrintHelloWorld() { global $helloWorld; echo $helloWorld."\n"; } ### MAIN if ( basename(__FILE__) == "HelloWorld.php") { PrintHelloWorld(); } ?>