> I'm curious if someone could explain to me why this is occuring:
>
> function blah() {
> //global $GLOBALS;
> echo 'Globals: <pre>'; print_r( $GLOBALS ); echo '</pre>';
>
> }
>
> As it is shown above, with the 'global $GLOBALS' line commented
> out, the print_r() works and shows all the currently defined variables
> and their corresponding values. However, if I declare $GLOBALS
> as global, nothing gets printed out.
>
> Why?
The above is all I really need to know. The rest of my previous email
was the result of a massive brainfart.
Sorry about that...
Chris
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php