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