<?
// this is main
$foo = 'bar';
test();
test2();
function test() {
global $foo;
echo "foo is $foo<br>";
}
function test2() {
echo "foo is {$GLOBALS['foo']}<br>";
}
?>
Kirk
> Some have eluded to this but I haven't seen a working
> example. I would like
> to declare globals in my main script and then inside
> functions that need
> these globals just somehow use the $GLOBALS or something to
> declare the
> variables global in the function.
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php