Mike,

It depends what you mean by local scope.

If you declare the variable as global, it should be available to the code
inside include1.txt and index.php.  It will not be available to other pages
however (i.e. it is not session global).  To create a truly global
(available to all pages in the site) variable, you should use a session
variable.

Regards,
Steve

"Mike D" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED]
> Hello,
>
> I have recently noticed something that I wasn't aware of until now. I have
> index.php which contains include1.txt and include2.txt. If a variable is
set
> in include1.txt it will *only* have a local scope, even if I declare it
> GLOBAL. Is this normal or a bug?
>
>   - MD
>
> ....................................
> Mike Dunlop
> AWN, Inc.
> // www.awn.com
> [ e ] [EMAIL PROTECTED]
> [ p ] 323.606.4237

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to