Source Code:
(back to article)
<?php $name = "John Doe"; function greeting() { global $name; echo "Hello, " . $name; } greeting(); // Hello, John Doe echo $GLOBALS['name']; // John Doe ?>
Result:
Report an issue