Re: [PHP] pass globals to functions???

2002-10-25 Thread Jason Wong
On Friday 25 October 2002 03:52, Shawn McKenzie wrote: 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

RE: [PHP] pass globals to functions???

2002-10-24 Thread Johnson, Kirk
? // this is main $foo = 'bar'; test(); test2(); function test() { global $foo; echo foo is $foobr; } 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