RE: [PHP] Re: $GLOBAL question

2003-08-18 Thread Robin Kopetzky
DOH! Damned fat-fingering!!! Must learn to type s l o w l y... Thanks! Robin 'Sparky' Kopetzky Black Mesa Computers/Internet Service Grants, NM 87020 -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: $GLOBAL question

2003-08-18 Thread Greg Beaver
$GLOBALS not $GLOBAL Greg -- phpDocumentor http://www.phpdoc.org Robin Kopetzky wrote: Good Morning!! I'm trying to print $GLOBALs this way and it doesn't work: $aTest = "This is a test"; function GlobalCheck() { print "{$GLOBAL['aTest']}"; } GlobalCheck();